-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 983 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
{
"name": "Social Media Lite",
"description": "Manage and declutter your social media experience. Block social media to complete your tasks and work distraction free.",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Manage my social media"
},
"icons": {
"16": "social-media-lite.png",
"48": "social-media-lite.png",
"128": "social-media-lite.png"
},
"permissions": [
"tabs",
"storage",
"scripting"
],
"host_permissions": [
"https://twitter.com/*",
"https://www.youtube.com/*",
"https://www.instagram.com/*",
"https://www.linkedin.com/*",
"https://mail.google.com/*"
],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["./static/js/content.js"],
"all_frames": false,
"run_at": "document_start"
}
],
"background": {
"service_worker": "./static/js/background.js",
"type": "module"
}
}