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
|
{
"manifest_version": 2,
"name": "JP-Hash",
"version": "1.0",
"description": "Converts any text input field content into its JP-Hash",
"homepage_url" : "https://www.kylheku.com/cgit/jp-hash/about",
"icons": {
"48": "jp-hash-48.png",
"96": "jp-hash-96.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["jp-hash.js"]
}
],
"browser_action": {
"default_icon": "jp-hash-32.png",
"default_title": "Calculate JP-Hash"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+J"
}
}
},
"permissions": [
"<all_urls>", "webNavigation"
],
"browser_specific_settings": {
"gecko": {
"id": "json-hash@kylheku.com"
}
}
}
|