-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmanifest.json
75 lines (75 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhadTVWVja6aEjRKN+G2OTLETy593wWzEXeEhoZ54Nzm50IdRHh0qq279daZbfClfXAHPEICCSoRU1DJDSVUQvMKcvn2lhcLyYpcA4zxPH8Wi9txW0iU3pbG3I8/JpRPvt9YZrq5rWPilueOwVIYUviYHL3tUVV+VrugsUEEHxeQ2T6xX4g+Gt1jm8LuLp8aZElT33Utk7O6JDGEBPLck36H+QG2lhhZK8j8O+0gPryO+/k/cydyG9ywfI7iXEF9H+DWPVjU0/qGKNee96YEfHXfTPgNcKWTAmBPNBo1IaLukVJ29gCEKQOizOj+u2nhhXSZC7Md+I8SAFh4ExNRBJQIDAQAB",
"manifest_version": 3,
"name": "Useful Scripts",
"description": "Scripts that can make your life faster and better",
"homepage_url": "https://github.com/Useful-Scripts-Extension/useful-script",
"version": "1.8",
"icons": {
"16": "./assets/icon16.png",
"32": "./assets/icon32.png",
"48": "./assets/icon32.png",
"128": "./assets/icon128.png"
},
"action": {
"default_popup": "./popup/popup.html",
"default_icon": "./assets/icon32.png"
},
"permissions": [
"idle",
"tts",
"tabs",
"power",
"history",
"storage",
"cookies",
"sessions",
"debugger",
"activeTab",
"downloads",
"bookmarks",
"scripting",
"webRequest",
"tabCapture",
"pageCapture",
"contextMenus",
"desktopCapture",
"webNavigation",
"notifications",
"unlimitedStorage",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": ["*://*/*", "<all_urls>"],
"background": {
"service_worker": "./scripts/background-scripts/background_script.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": ["scripts/*"],
"matches": ["<all_urls>"]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "./scripts/net-request-rules/rules.json"
}
]
},
"externally_connectable": {
"matches": [
"https://hoangtran0410.github.io/*",
"https://useful-scripts-extension.github.io/*",
"https://facebook-all-in-one.com/*",
"http://localhost:5173/*",
"http://127.0.0.1:5173/*",
"http://localhost:5500/*",
"http://127.0.0.1:5500/*"
]
}
}