forked from danimesq/twitter-mass-unfollow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 1.11 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
{
"name": "Twitter Mass Unfollow",
"short_name": "massunfollow",
"description": "A simple (configurable) way to mass unfollow your Twitter followings. It will save a list of unfollowed @s after finished!",
"version": "1.1.7",
"manifest_version": 3,
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"action": {
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": ["https://*.twitter.com/*/following"],
"js": ["script.js"],
"all_frames": true,
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["shared.js"],
"matches": ["<all_urls>"]
}
],
"permissions": ["storage", "declarativeContent", "scripting", "activeTab"],
"background_scripts": [
{
"name": "background",
"matches": ["<all_urls>"],
"js": ["background.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "109.0"
}
}
}