This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
64 lines (64 loc) · 2.47 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
56
57
58
59
60
61
62
63
64
{
"name": "Minimal Productivity App",
"short_name": "MiniPro",
"version": "0.0.1",
"manifest_version": 2,
"description": "Minimal Productivity Application is developed to make your work life productive, efficient, fast and easier. This simple Extension for your browser can help you with Notes, To-dos, Live Q&As, Focus modes, Minimal Detox of Social Medias and more fun configurations and features.",
"homepage_url": "http://niush.tk/minimal-productivity",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"background": {
"page": "src/bg/background.html",
"persistent": true
},
"options_page": "src/options_custom/index.html",
"browser_action": {
"default_icon": {
"19": "icons/icon19.png",
"48": "icons/icon48.png"
},
"default_popup": "src/page_action/page_action.html",
"default_title": "Productivity App - Settings"
},
"permissions": [
"storage",
"unlimitedStorage",
"bookmarks",
"contextMenus",
"history",
"idle",
"notifications",
"tabs",
"activeTab",
"geolocation",
"<all_urls>",
"alarms"
],
"content_scripts": [{
"matches": [
"<all_urls>"
],
"css": [
"src/inject/inject.css"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery/jquery.min.js",
"js/jquery/jquery-ui.min.js",
"src/inject/inject.js"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://*.niush.tk https://stats.pusher.com https://pusher.com https://*.pusher.com https://ssl.google-analytics.com; object-src 'self'; font-src 'self';",
"web_accessible_resources": ["src/options_custom/index.html", "icons/icon128.png", "icons/material-icon.woff2", "src/inject/floaters.html", "src/inject/iframe/index.html", "src/inject/iframe/css/style.css", "js/functions/inject_chat.js", "js/materialize/materialize.min.js", "js/quill/quill.js", "css/materialize.min.css", "css/quill.snow.css", "js/jquery/jquery.min.js", "js/jquery/jquery-ui.min.js", "src/inject/iframe/note.html", "src/inject/iframe/chat.html"]
}