-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (37 loc) · 877 Bytes
/
manifest.json
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
{
"manifest_version": 2,
"name": "HN Mute",
"version": "0.0.1",
"description": "Mute words on Hacker News",
"icons": {
"48": "icons/hn-mute-48.png",
"96": "icons/hn-mute-96.png"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"*://news.ycombinator.com/",
"*://news.ycombinator.com/news*",
"*://news.ycombinator.com/newest*",
"*://news.ycombinator.com/front*",
"*://news.ycombinator.com/ask*",
"*://news.ycombinator.com/show*"
],
"run_at": "document_end",
"js": ["script.js"]
}
],
"permissions": ["storage"],
"browser_specific_settings": {
"gecko": {
"id": "{c8889af5-b066-41c9-a69b-e1fc5454f023}",
"strict_min_version": "102.0"
},
"gecko_android": {
"strict_min_version": "113.0"
}
}
}