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
|
{
"description": "**FOR DEVELOPERS ONLY!! IF YOU'VE BEEN TOLD TO INSTALL THIS, SOMEONE'S TRYING TO PHISH YOU! See https://en.wikipedia.org/wiki/Self-XSS**\n\nA general-purpose script evaluation tool. Should be treated as a more restricted single-script userscript manager.",
"manifest_version": 2,
"name": "evaltool",
"version": "0.0.2",
"permissions": [
"contextMenus",
"theme",
"storage",
"unlimitedStorage",
"webRequest",
"webRequestBlocking"
],
"optional_permissions": [
"activeTab",
"bookmarks",
"browsingData",
"clipboardRead",
"clipboardWrite",
"cookies",
"downloads",
"geolocation",
"history",
"idle",
"management",
"nativeMessaging",
"notifications",
"privacy",
"proxy",
"scripting",
"search",
"sessions",
"tabGroups",
"tabs",
"topSites",
"webNavigation",
"<all_urls>"
],
"icons": {
"16": "favicon_16x.png",
"32": "favicon_32x.png",
"48": "favicon_48x.png",
"64": "favicon_64x.png",
"96": "favicon_96x.png",
"128": "favicon_128x.png"
},
"background": {
"scripts": [
"generated/background.js"
],
"type": "module"
},
"options_ui": {
"page": "proxy.html"
},
"browser_specific_settings": {
"gecko": {
"id": "evaltool@git.estrogen.zone"
}
},
"content_security_policy": "script-src 'unsafe-eval' 'self'"
}
|