sac-route-portal-gpx-fx/manifest.json

30 lines
709 B
JSON
Raw Permalink Normal View History

2021-06-15 09:14:46 +00:00
{
"manifest_version": 2,
2021-06-15 09:38:10 +00:00
"name": "SAC Route Portal GPX Downloader",
2024-02-16 10:14:32 +00:00
"version": "0.8",
2021-06-15 09:14:46 +00:00
"developer": {
"name": "Sebastian Hugentobler",
2021-06-15 09:16:24 +00:00
"url": "https://code.vanwa.ch/sebastian/sac-route-portal-gpx-fx"
2021-06-15 09:14:46 +00:00
},
"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": {
2024-02-16 10:14:32 +00:00
"scripts": [
"background.js"
]
2021-06-15 09:14:46 +00:00
},
"browser_action": {
"default_icon": "icons/map.png",
"default_title": "To GPX"
2024-02-16 10:14:32 +00:00
}
2021-06-15 09:14:46 +00:00
}