-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.firefox.json
54 lines (46 loc) · 1.17 KB
/
manifest.firefox.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
{
"manifest_version": 2,
"name": "FocusPocus: Block Distractions & Stay Focused",
"description": "Stay focused as if under a magical spell.",
"version": "1.1.2",
"author": "@jotavetech",
"icons": {
"16": "assets/logo/icon-16.png",
"32": "assets/logo/icon-32.png",
"64": "assets/logo/icon-64.png",
"128": "assets/logo/icon-128.png"
},
"permissions": ["storage", "notifications"],
"browser_action": {
"default_icon": {
"16": "/assets/logo/icon-32.png",
"32": "/assets/logo/icon-32.png",
"48": "/assets/logo/icon-64.png",
"96": "/assets/logo/icon-128.png"
},
"default_popup": "/popup/index.html",
"default_title": "FocusPocus"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["/content/styles.css"]
}
],
"options_ui": {
"page": "/options/index.html",
"chrome_style": true,
"open_in_tab": true
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"web_accessible_resources": [
"/assets/logo/*",
"/popup/*",
"/options/*",
"/content/*"
]
}