-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest-firefox.json
55 lines (55 loc) · 1.53 KB
/
manifest-firefox.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
{
"description": "Searches salvage sites for a VIN and automates image downloads.",
"manifest_version": 2,
"name": "Salvage Search",
"version": "3.1.2",
"homepage_url": "https://benetherington.com/salvage-search/",
"browser_specific_settings": {
"gecko": {
"update_url": "https://benetherington.com/salvage-search/updates.json"
}
},
"icons": {
"16": "icons/SS-16.png",
"32": "icons/SS-32.png",
"48": "icons/SS-48.png",
"128": "icons/SS-128.png"
},
"permissions": [
"storage",
"clipboardRead",
"tabs",
"downloads",
"*://*.copart.com/lot/*",
"*://*.iaai.com/*",
"https://*.anvis.iaai.com/deepzoom*",
"*://*.spincar.com/*",
"*://*.row52.com/*",
"*://*.poctra.com/*",
"*://en.bidfax.info/*",
"*://stat.vin/*"
],
"background": {
"scripts": [
"browser-polyfill.js",
"shared-assets.js",
"salvage_api/copart.js",
"salvage_api/iaai.js",
"salvage_api/row52.js",
"archive_api/poctra.js",
"archive_api/bidfax.js",
"archive_api/statvin.js",
"search.js",
"download.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/SS-16.png",
"32": "icons/SS-32.png",
"48": "icons/SS-48.png",
"128": "icons/SS-128.png"
},
"default_popup": "popup/actions.html"
}
}