41 lines
808 B
JSON
41 lines
808 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "SAC Route Portal GPX",
|
|
"version": "0.1",
|
|
"developer": {
|
|
"name": "Sebastian Hugentobler",
|
|
"url": "https://code.vanwa.ch/sebastian/sac-route-portal-gpx-fx"
|
|
},
|
|
|
|
"description": "Download gpx tracks from the sac route portal.",
|
|
|
|
"icons": {
|
|
"48": "icons/map.png"
|
|
},
|
|
|
|
"permissions": [
|
|
"activeTab",
|
|
"downloads",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"https://www.sac-cas.ch/*"
|
|
],
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": "icons/map.png",
|
|
"default_title": "To GPX"
|
|
},
|
|
|
|
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"strict_min_version": "57.0a1"
|
|
}
|
|
}
|
|
}
|