-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
55 lines (55 loc) · 1.31 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
50
51
52
53
54
55
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.8.0",
"author": "Alin Pasol",
"homepage_url": "https://github.com/theAlinP/twitter-link-deobfuscator",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"content_scripts": [
{
"matches": [
"*://*.twitter.com/*",
"*://*.x.com/*"
],
"js": [
"scripts/content_script.js"
]
}
],
"browser_action": {
"default_icon": {
"32": "icons/TLD_icon_enabled-32.png",
"48": "icons/TLD_icon_enabled-48.png",
"64": "icons/TLD_icon_enabled-64.png",
"96": "icons/TLD_icon_enabled-96.png",
"128": "icons/TLD_icon_enabled-128.png"
},
"default_title": "__MSG_enabledStateTitle__"
},
"icons": {
"32": "icons/TLD_icon_enabled-32.png",
"48": "icons/TLD_icon_enabled-48.png",
"64": "icons/TLD_icon_enabled-64.png",
"96": "icons/TLD_icon_enabled-96.png",
"128": "icons/TLD_icon_enabled-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{d820ea6b-de81-4b11-ad1f-832314b8a49f}"
}
},
"background": {
"scripts": [
"scripts/background_script.js"
]
},
"permissions": [
"*://*.twitter.com/*",
"*://*.x.com/*",
"storage",
"tabs",
"webRequest",
"webRequestBlocking"
]
}