-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathmanifest.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"manifest_version": 3,
"name": "Limitra - Master Your Focus",
"version": "1.2.0",
"description": "If willpower worked, you wouldn't be here. Set hard limits. Limitra enforces them.",
"default_locale": "en",
"permissions": ["storage", "activeTab", "scripting", "alarms"],
"host_permissions": ["*://*.youtube.com/*", "*://*.instagram.com/*"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"16": "assets/manifest/16x16.png",
"32": "assets/manifest/32x32.png",
"48": "assets/manifest/48x48.png",
"128": "assets/manifest/128x128.png"
},
"action": {
"default_popup": "ui/popup/index.html",
"default_icon": {
"16": "assets/manifest/16x16.png",
"32": "assets/manifest/32x32.png",
"48": "assets/manifest/48x48.png",
"128": "assets/manifest/128x128.png"
}
},
"options_ui": {
"page": "ui/settings/index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/*", "*://*.instagram.com/*"],
"js": ["content.js"],
"css": ["styles.css"]
}
]
}