-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (49 loc) · 1.06 KB
/
manifest.json
File metadata and controls
53 lines (49 loc) · 1.06 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"manifest_version": 3,
"name": "Social Media Signal Maximizer",
"description": "Decluttering youtube.com, instagram.com, and twitter.com",
"version": "1.2.0",
"author": "prabodh.gyawali2005@gmail.com",
"homepage_url": "https://github.com/PrabodhGyawali/Distraction-Blocker",
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"*://*.x.com/*"
],
"background": {
"service_worker": "scripts/x/background.js",
"type": "module"
},
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"content_scripts": [
{
"js": ["dist/yt-bundle.js"],
"matches": [
"https://www.youtube.com/*"
],
"run_at": "document_start"
},
{
"js": ["scripts/instagram/instagram-content.js"],
"matches": [
"https://www.instagram.com/*"
]
},
{
"js": ["scripts/x/x-content.js"],
"matches": [
"https://x.com/*"
]
}
]
}