-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
49 lines (49 loc) · 1.11 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
47
48
49
{
"name": "Nitter Redirect",
"description": "Redirects Twitter requests to Nitter, the privacy friendly alternative.",
"version": "1.1.5",
"manifest_version": 2,
"background": {
"scripts": ["background.js"],
"persistent": true
},
"icons": {
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://twitter.com/*",
"*://www.twitter.com/*",
"*://mobile.twitter.com/*",
"*://pbs.twimg.com/*",
"*://video.twimg.com/*"
],
"js": ["content-script.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://twitter.com/*",
"*://www.twitter.com/*",
"*://mobile.twitter.com/*",
"*://pbs.twimg.com/*",
"*://video.twimg.com/*"
],
"browser_action": {
"default_popup": "pages/popup/popup.html",
"default_icon": {
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{513646f8-fb87-4135-a41e-4cf1d1ccccf2}"
}
}
}