forked from insin/control-panel-for-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.08 KB
/
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
44
45
46
{
"manifest_version": 2,
"name": "Tweak New Twitter",
"description": "Remove algorithmic content from Twitter, hide news & trends, control which shared tweets appear on your timeline, and improve the UI",
"homepage_url": "https://github.com/insin/tweak-new-twitter/",
"version": "2.22.0",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://mobile.twitter.com/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"tweak-new-twitter.user.js"
],
"options_ui": {
"browser_style": true,
"chrome_style": false,
"page": "options.html"
},
"browser_action": {
"default_title": "Tweak New Twitter",
"default_popup": "browser_action.html"
},
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}