forked from JustKemForFun/ZaloDataExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1.17 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
{
"name": "ZaloDataExtractor",
"version": "1.1.0",
"description": "ZaloDataExtractor is a tool that extracts essential information like IMEI, Cookies, and User-Agent from the Zalo APP. It's designed for easy use, allowing quick and accurate data collection for analysis, development, or app compatibility",
"manifest_version": 3,
"homepage_url": "https://github.com/JustKemForFun/ZaloDataExtractor/",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png",
"192": "images/icon-192.png",
"384": "images/icon-384.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"cookies",
"storage",
"activeTab",
"webRequest",
"notifications",
"clipboardWrite",
"declarativeNetRequest"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/popup.js"]
}
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_icon": {
"384": "images/icon-384.png"
},
"default_popup": "popup.html"
},
"externally_connectable": {
"matches": [
"http://localhost:3008/*",
"http://127.0.0.1:3008/*"
]
},
"incognito": "spanning"
}