-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathmanifest.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"manifest_version": 2,
"name": "BrowsingTime Extension",
"short_name": "BrowsingTime",
"author": "Roland Ortner",
"version": "1.2",
"description": "Shows statistics about your browsing history",
"homepage_url": "https://github.com/rolandortner/browsing-time",
"browser_specific_settings": {
"gecko": {
"id": "{c3c8b7d2-4b1c-4f79-8cd9-2d398a542e57}"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"history",
"storage",
"tabs"
],
"background": {
"scripts": ["libs/browser-polyfill.js", "background.js"],
"persistent": false
},
"options_ui": {
"page": "settings/settings.html",
"browser_style": true
},
"web_accessible_resources": [
"extension-page/index.html"
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; frame-ancestors 'self'",
"browser_action": {
"default_icon": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"default_title": "BrowsingTime",
"default_popup": "popup/popup.html"
}
}