forked from drmproductions/ActiveCollabInlineTimers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (45 loc) · 1.06 KB
/
manifest.json
File metadata and controls
48 lines (45 loc) · 1.06 KB
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
{
"manifest_version": 2,
"name": "Active Collab Inline Timers",
"version": "1.1.1",
"description": "Provides instant access to timers on any Active Collab page that lists tasks.",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"32": "icons/icon32.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_title": "Active Collab Inline Timers",
"default_popup": "popup/popup.html",
"default_icon": {
"19": "icons/icon16.png",
"38": "icons/icon38.png"
}
},
"author": "DRM Productions",
"background": {
"scripts": ["server.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["client.js"],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"homepage_url": "https://drminc.com",
"permissions": [
"tabs",
"activeTab",
"webNavigation",
"storage",
"*://*/*"
],
"web_accessible_resources": ["utils.js", "page.js", "page.css"]
}