-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (30 loc) · 921 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version":3,
"name":" Scrolling Time Guardian",
"description":" Scrolling Time Guardian: Your Digital Wellness Guardian to help track and alert you on time spent on mindless scrolling!",
"version":"0.0.6",
"permissions":["storage","unlimitedStorage"],
"icons":{
"16" :"img/black.png",
"48" :"img/black.png",
"128":"img/black.png"
},
"background":{
"service_worker":"service_worker.js"
},
"content_scripts":[{
"matches":["<all_urls>"],
"js":["js/lib/jquery.min.js","js/content.js"],
"all_frames":true
}],
"action":{
"default_title":"Balanced Screen Nutrition: Track your daily scrolling for a healthier wellbeing!",
"default_popup":"html/popup.html",
"default_icon": "img/black.png"
},
"web_accessible_resources":[{
"resources": ["/img/*"],
"matches": ["<all_urls>"]
}]
}