-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 990 Bytes
/
Copy pathmanifest.json
File metadata and controls
47 lines (47 loc) · 990 Bytes
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
{
"manifest_version": 3,
"name": "qwq",
"version": "2.2",
"description": "Browser extension: screenshot, IP, image editor (filters, crop), GitHub, cache, passwords, Twitter auto-like.",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"activeTab",
"scripting",
"clipboardWrite",
"downloads",
"clipboardRead",
"browsingData",
"storage",
"notifications"
],
"host_permissions": [
"*://ifconfig.me/*",
"*://twitter.com/*",
"*://x.com/*",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
],
"web_accessible_resources": [
{
"resources": ["image_editor.html", "image_editor.js", "image_editor.css"],
"matches": ["<all_urls>"]
}
]
}