forked from soerface/fb-unseen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 924 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
{
"name": "FB unseen",
"version": "0.1.7.2",
"manifest_version": 2,
"description": "Blocks the ”seen” feature of the facebook messenger.",
"background": {
"scripts": ["fancy-settings/source/lib/store.js", "background.js"]
},
"content_scripts": [
{
"matches": ["*://*.facebook.com/*"],
"js": ["jquery.js", "read_button.js", "hide_chat_seen.js"],
"css": ["read_button.css"]
}
],
"permissions": [
"webRequest",
"webRequestBlocking",
"*://*.facebook.com/*",
"*://swege.github.com/*",
"*://swege.github.io/*"
],
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "fancy-settings/source/index.html",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}