RWGPSでルートを作成するとき、標高値を国土地理院の標高タイル(基盤地図情報数値標高モデル)から取得するように変更するボタンを追加します。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "0.34",
"name": "RWGPS地理院標高",
"short_name": "RWGPS-GSIELE",
"description": "RWGPSでルートを作成するとき、標高値を国土地理院の標高タイル(基盤地図情報数値標高モデル)から取得するように変更するボタンを追加します。",
"host_permissions": [
"https://ridewithgps.com/routes/*"
],
"content_scripts": [
{
"matches": [
"https://ridewithgps.com/routes/new*",
"https://ridewithgps.com/routes/*/edit*"
],
"run_at": "document_end",
"js": [
"rwgps_ele_hack.js"
]
}
],
"icons": {
"128": "img/tinypng/icon_02_128.png"
},
"homepage_url": "https://www.330k.info/software/chrome_rwgps_ele_gsi/"
}