-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.chrome.json
More file actions
64 lines (64 loc) · 2.01 KB
/
manifest.chrome.json
File metadata and controls
64 lines (64 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"manifest_version": 3,
"id": "https://chromewebstore.google.com/detail/reddit-posts-and-subreddi/loejnpaccddielelefponckhpeikdclp",
"name": "Reddit Refine - Filter, Analyze",
"version": "1.4.0",
"author": "ShriPunta",
"description": "Removes posts matched by the configured filter from the reddit feed.",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"content_scripts": [
{
"matches": [
"*://www.reddit.com/",
"*://reddit.com/",
"*://www.reddit.com/r/all*",
"*://reddit.com/r/all*",
"*://www.reddit.com/r/popular*",
"*://reddit.com/r/popular*",
"*://www.reddit.com/user/*",
"*://reddit.com/user/*",
"*://www.reddit.com/u/*",
"*://reddit.com/u/*",
"*://www.reddit.com/best*",
"*://reddit.com/best*",
"*://www.reddit.com/hot*",
"*://reddit.com/hot*",
"*://www.reddit.com/new*",
"*://reddit.com/new*",
"*://www.reddit.com/rising*",
"*://reddit.com/rising*",
"*://www.reddit.com/search*",
"*://reddit.com/search*"
],
"js": [
"index.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Reddit Filter Settings",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png"
}
},
"permissions": [
"storage",
"activeTab"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}