-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 1007 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 1007 Bytes
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
{
"manifest_version": 2,
"name": "RepulsTime",
"version": "1.3.0",
"description": "Limit time spent on repuls.io",
"homepage_url": "https://github.com/pandaroux007/RepulsTime",
"developer": {
"name": "pandaroux007",
"url": "https://www.github.com/pandaroux007"
},
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"browser_action": {
"default_icon": "icons/icon.svg",
"default_popup": "popup/popup.html",
"default_title": "RepulsTime"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"tabs",
"*://repuls.io/*"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["*://repuls.io/"],
"js": ["content.js"]
}
],
"options_ui": {
"page": "settings/settings.html",
"open_in_tab": true
}
}