-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
29 lines (28 loc) · 876 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
{
"name": "Poke 'Em",
"description": "This extension keeps track of how much time you spend on websites.",
"version": "0.2",
"manifest_version": 2,
"icons": {
"48": "./src/images/final48.png",
"128": "./src/images/final128.png"
},
"background": {
"scripts": [
"./src/js/background.js"
]
},
"options_ui":{
"page": "./src/html/timer.html",
"open_in_tab": false
},
"browser_action": {
"default_icon": "./src/images/final128.png",
"default_title": "Poke 'Em!",
"default_popup": "./src/html/popup.html"
},
"permissions": [ "tabs",
"identity",
"storage"],
"content_security_policy": "script-src 'self' https://cdn.firebase.com https://apis.google.com https://www.gstatic.com; object-src 'self'"
}