forked from dimdenGD/YeahTwitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
53 lines (53 loc) · 1.21 KB
/
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
46
47
48
49
50
51
52
53
{
"name": "Yeah! for Twitter",
"description": "Adds a Yeah! button to Twitter",
"version": "1.1.3",
"manifest_version": 3,
"homepage_url": "https://github.com/dimdenGD/YeahTwitter",
"permissions": [
"storage"
],
"host_permissions": [
"*://*.twitter.com/*",
"*://twitter.com/*",
"*://twimg.com/*",
"*://*.twimg.com/*",
"*://x.com/*",
"*://*.x.com/*",
"*://*.dimden.dev/*"
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"styles/*",
"fonts/*"
],
"matches": [
"*://*.twitter.com/*",
"*://*.x.com/*"
]
}
],
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"action": {
"default_icon": {
"128": "/images/logo128.png"
},
"default_title": "Extension settings",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://twitter.com/*", "https://x.com/*"],
"js": ["scripts/purify.min.js", "scripts/api.js", "scripts/helpers.js", "scripts/tweetrenderer.js", "scripts/content.js"],
"all_frames": true,
"run_at": "document_end"
}
]
}