iD Strava Heatmap

Easily overlay the Strava Global Heatmap in your iD editor and gain valuable insights into popular routes and activity patterns.

iD Strava Heatmapคืออะไร?

iD Strava Heatmap เป็นส่วนขยายของ Chrome ที่พัฒนาโดย julcnx และคุณลักษณะหลักของมันคือ "Easily overlay the Strava Global Heatmap in your iD editor and gain valuable insights into popular routes and activity patterns."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย iD Strava Heatmap

ดาวน์โหลดไฟล์ส่วนขยาย iD Strava Heatmap ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This browser extension brings a seamless integration of the Strava Global Heatmap into the OpenStreetMap iD editor, enhancing your mapping capabilities.

With this extension, you gain automatic access to all Strava activities as Heatmap overlays, eliminating the need for manual URL handling.

=== Instructions ===

1. Add this extension to Chrome
2. Log in into strava.com/login (If you don't have an account yet, sign up for a free one)
3. Visit strava.com/heatmap 
4. Launch your iD editor
5. Look for "Background Settings" > "Overlays"
7. Select "Strava Heatmap (All)", or any specific activity e.g "(Ride)", "(Run)", "(Water)", or "(Winter)".

=== Troubleshoot ===

Q: Why are the heatmap overlays blurred?
A: Please ensure that you are signed in to Strava.com AND have visited the Strava Global Heatmap webpage. Once done, reload your iD editor page to resolve the issue.

=== Browser Support ===

Kindly be aware that the iD Strava Heatmap is explicitly crafted for Chrome, and while it excels on this browser, we haven't tested or fully supported it for other Chromium based browsers, including Brave, Opera...                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ iD Strava Heatmap iD Strava Heatmap
ID eglbcifjafncknmpmnelckombmgddlco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/id-strava-heatmap/eglbcifjafncknmpmnelckombmgddlco
คำอธิบาย Easily overlay the Strava Global Heatmap in your iD editor and gain valuable insights into popular routes and activity patterns.
ขนาดไฟล์ 26.69 KB
จำนวนการติดตั้ง 249
เวอร์ชันปัจจุบัน 0.8.2
อัปเดตครั้งล่าสุด 2024-01-02
วันที่เผยแพร่ 2023-06-27
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา julcnx
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cmoffroad/id-strava-heatmap-extension
URL หน้าช่วยเหลือ https://github.com/cmoffroad/id-strava-heatmap-extension/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "iD Strava Heatmap",
    "description": "Easily overlay the Strava Global Heatmap in your iD editor and gain valuable insights into popular routes and activity patterns.",
    "version": "0.8.2",
    "minimum_chrome_version": "88",
    "permissions": [
        "cookies",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.strava.com\/*",
        "*:\/\/*.openstreetmap.org\/*"
    ],
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.openstreetmap.org\/id*"
            ],
            "js": [
                "scripts\/browser-polyfill.min.js",
                "scripts\/strava-request.js",
                "scripts\/id-content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/www.strava.com\/heatmap"
            ],
            "js": [
                "scripts\/browser-polyfill.min.js",
                "scripts\/strava-request.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/www.strava.com\/login"
            ],
            "js": [
                "scripts\/browser-polyfill.min.js",
                "scripts\/strava-clear.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/id-script.js"
            ],
            "matches": [
                "*:\/\/*.openstreetmap.org\/*"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/cmoffroad\/id-strava-heatmap-extension",
    "icons": {
        "48": "icons\/icon-48.png"
    }
}