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
|
{
"manifest_version":2,
"name":"Searxes' Third-party Request Blocker",
"description":"\"Prevent your browser from connecting to third-party resource without user consent.\"",
"version":"1.0.14",
"author":"Searxes",
"homepage_url":"https://searxes.danwin1210.me/",
"permissions":[
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage",
"unlimitedStorage",
"activeTab",
"tabs",
"webNavigation",
"contextMenus",
"privacy",
"browserSettings",
"browsingData",
"downloads"
],
"browser_action":{
"browser_style":false,
"default_icon":{
"16":"icons/icon-16.png",
"32":"icons/icon-32.png"
},
"default_title":"TPRB",
"default_popup":"tprb_dlg.html"
},
"options_ui":{
"page":"tprb_cfg.html",
"browser_style":false
},
"commands":{
"tprb-key-action":{
"suggested_key":{
"default":"Alt+3"
}
}
},
"icons":{
"32":"icons/icon-32.png",
"48":"icons/icon-48.png",
"64":"icons/icon-64.png"
},
"background":{
"scripts":[
"tprb_core.js"
]
},
"content_scripts":[
{
"matches":[
"http://*/*",
"https://*/*"
],
"js":[
"tprb_cs.js"
],
"run_at":"document_end",
"all_frames":true
}
],
"applications":{
"gecko":{
"id":"tprb.addon@searxes.danwin1210.me",
"strict_min_version":"60.0"
}
}
}
|