-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
39 lines (37 loc) · 852 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
{
"manifest_version": 2,
"name": "Nhymxu - Social ghost",
"version": "0.3.0",
"description": "Blocks \"seen\" marks on Facebook Stories and Instagram Stories.",
"background": {
"scripts": ["index.js"],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"*://*.facebook.com/*",
"*://*.instagram.com/*"
],
"browser_action": {
"default_icon": "icon-enabled.png",
"default_title": "Nhymxu - Social ghost",
"default_popup": "popup.html"
},
"icons": {
"48": "icon-enabled.png"
},
"developer": {
"name": "Dung Nguyen (nhymxu)",
"url": "https://dungnt.net"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
},
"gecko_android": {
"id": "[email protected]"
}
}
}