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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// Copyright (C) 2021 Wojtek Kosior
// Copyright (C) 2021 jahoti
// Redistribution terms are gathered in the `copyright' file.
{
"manifest_version": 2,
"name": "My extension",
"short_name": "Myext",
"version": "0.0.0",
// WARNING!!!
// EACH USER SHOULD REPLACE "key" WITH UNIQUE VALUE!!!
// OTHERWISE SECURITY CAN BE TRIVIALLY COMPROMISED!
//
// A unique key can be generated with:
// $ ssh-keygen -f /path/to/new/key.pem -t rsa -b 1024
//
// Only relevant to users of chrome-based browsers.
// Users of FireFox forks are safe.
"key": "b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAlwAAAAdzc2gtcnNhAAAAAwEAAQAAAIEA+0GT5WNmRRo8e5tL9+BmNtY6aBPwLIgbPnLShYBMSR40iYwLTsccrkwBXb3bs1o4p6q5WJugI8Lsia+GXZc/XHGFkq7D1aWiTxlJLs8z0JC2TQ2/yatYmBMchogYGeeUfP7aI7JJZwpATts+VhIvgga/4FYj+DijMIEpwdckqFEAAAII4Dh7HOA4exwAAAAHc3NoLXJzYQAAAIEA+0GT5WNmRRo8e5tL9+BmNtY6aBPwLIgbPnLShYBMSR40iYwLTsccrkwBXb3bs1o4p6q5WJugI8Lsia+GXZc/XHGFkq7D1aWiTxlJLs8z0JC2TQ2/yatYmBMchogYGeeUfP7aI7JJZwpATts+VhIvgga/4FYj+DijMIEpwdckqFEAAAADAQABAAAAgEHB5/MhEKMFOs8e1cMJ97ZiWubiUPlWpcqyQmauLUj1nspg3JTBh8AWJEVkaxuFgU5gYCHQmRjC6yUdywyziOEkFA4r/WpX4WmbIe+GQHRHhitLN0dgF8N6/fVNOoa5StTdfZqyl23pVXyepoDNjrJFKyupqPMmpwfH5lGr9RwBAAAAQG76HflB/5j8P2YgIYX6dQT4Ei0SqiIjNVy7jFJUQDKSJg/PYkedE02JZJBJPcMYxEJUxXtMgq+upamNILfkmY0AAABBAP4v0O5dqjy16xDDFzb4DPNAcw5Za9KJaXKVkUuKXMNZOKTR0RC/upjNTmttY980RKdIx5zA25dO8cx563bSDIsAAABBAP0MaOpBiai/eRmLqhlthHODa+Mur6W3uc9PyhWhgDBjLNMR/doaYeyfVKxtIiN3a+HkN++G+vbokRweQv++bhMAAAANdXJ6QGxvY2FsaG9zdAECAwQFBg==",
"author": "various",
"description": "Kill the web&js",
"applications": {
"gecko": {
"id": "{6fe13369-88e9-440f-b837-5012fb3bedec}",
"strict_min_version": "60.0"
}
},
"icons":{
"64": "icons/myext.png"
},
"permissions": [
"contextMenus",
"webRequest",
"webRequestBlocking",
"activeTab",
"notifications",
"sessions",
"storage",
"tabs",
"<all_urls>"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"64": "icons/myext.png"
},
"default_title": "Myext",
"default_popup": "html/display-panel.html"
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": true
},
"web_accessible_resources": [
],
"background": {
"persistent": true,
"scripts": [
"common/stored_types.js",
"common/lock.js",
"common/once.js",
"common/browser.js",
"background/storage.js",
"background/message_server.js",
"common/connection_types.js",
"background/storage_server.js",
"common/url_item.js",
"common/sha256.js",
"background/settings_query.js",
"background/page_actions_server.js",
"common/gen_unique.js",
"background/policy_injector.js",
"background/main.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": true,
"js": [
"content/freezer.js",
"common/browser.js",
"common/connection_types.js",
"content/page_actions.js",
"common/url_item.js",
"common/sha256.js",
"common/gen_unique.js",
"content/main.js"
]
}
]
}
|