-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
manifest.json
55 lines (55 loc) · 1.66 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
54
55
{
"name": "OldTweetDeck",
"description": "Returns old TweetDeck, for free!",
"version": "4.0.4",
"manifest_version": 3,
"homepage_url": "https://github.com/dimdenGD/OldTweetDeck",
"permissions": [
"webNavigation",
"cookies",
"declarativeNetRequest"
],
"host_permissions": [
"https://twitter.com/*",
"https://*.twitter.com/*",
"https://x.com/*",
"https://*.x.com/*",
"https://abs.twimg.com/*",
"https://api.twitter.com/*",
"https://tweetdeck.com/"
],
"web_accessible_resources": [
{
"resources": ["images/*", "files/*", "src/*", "solver.html", "manifest.json"],
"matches": ["<all_urls>"]
}
],
"declarative_net_request": {
"rule_resources" : [{
"id": "ruleset",
"enabled": true,
"path": "ruleset.json"
}]
},
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"content_scripts": [
{
"matches": ["https://twitter.com/i/tweetdeck", "https://x.com/i/tweetdeck", "https://x.com/i/tweetdeck?*"],
"js": ["src/content.js"],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["https://twitter.com/i/tweetdeck", "https://x.com/i/tweetdeck", "https://x.com/i/tweetdeck?*"],
"js": ["src/destroyer.js", "src/notifications.js", "src/injection.js"],
"all_frames": true,
"run_at": "document_start",
"world": "MAIN"
}
]
}