-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 891 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 891 Bytes
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
{
"manifest_version": 2,
"name": "Opinionated",
"author": "William Johnston",
"version": "1.7.0",
"description": "Checks page content for links to opinion articles on popular news sites",
"homepage_url": "https://github.com/wjohnsto/opinionated",
"browser_specific_settings": {
"gecko": {
"id": "{aa139ca1-2695-44d7-bf0d-78d51c56adbf}"
}
},
"permissions": [
"<all_urls>",
"activeTab"
],
"icons": {
"48": "icons/opinionated.png",
"96": "icons/opinionated_2x.png"
},
"browser_action": {
"default_title": "Opinionated"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": false,
"js": [
"content_scripts/opinionated.min.js"
]
}
]
}