-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
45 lines (40 loc) · 961 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 3,
"name": "LockdIn",
"version": "1.0",
"description": "Productivity Extension with Landing Page. Built for Monash University Students",
"icons": {
"128": "assets/icons/icon128.png",
"48": "assets/icons/icon48.png",
"16": "assets/icons/icon16.png"
},
"action": {
"default_icon": "assets/icons/icon16.png",
"default_popup": "popup.html"
},
"content_scripts":[
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"scripts/thumbcommon.js",
"scripts/thumbinject.js"
],
"run_at": "document_start"}],
"chrome_url_overrides": {
"newtab": "page.html"
},
"options_ui": {
"page": "popup.html",
"browser_style": true
},
"permissions": [
"activeTab",
"geolocation",
"storage"
],
"background": {
"content_scripts": ["scripts/units.js"]
}
}