CacheList

CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files

什麼是CacheList?

CacheList是由https://radekbaxa.cz開發的Chrome擴展程式,該擴展的主要功能是“CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載CacheList擴展crx文件

下載CacheList擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        PRIVACY POLICY
- Please read https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
- Sumup: Every possible transmission is via secure (HTTPS) protocol! Only non-identification information is collected internally in this CacheList extension = no way to transfer anywhere.

CacheList permission explanation:
---------------------------------
CacheList needs permission for access to Geocaching website https://www.geocaching.com/* (secure https variant, of course), because CacheList asynchronously read data about selected Geocaching “Cache” by you -> and thanks to it, CacheList can locally save this information for future printing or generating file (gpx, loc, kml and other formats) for you.
CacheList needs place content scripts (JavaScript script executed on Geocaching pages) because it is required to place the CacheList action button (icon) for collecting concrete selected Geocaching “Cache”.                    

擴展基本資訊

名稱 CacheList CacheList
ID amhhdbdhoghppijbjfdkiaconkmfbbpa
官方網址 https://chromewebstore.google.com/detail/cachelist/amhhdbdhoghppijbjfdkiaconkmfbbpa
簡介 CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files
檔案大小 584 KB
安裝次數 10,528
目前版本 4.1.8
更新時間 2020-06-21
上架時間 2020-06-20
評分 4.65/5 共 130 次評分
開發者 https://radekbaxa.cz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
說明頁面URL https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
隱私政策頁面URL https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
支援的語言 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CacheList",
    "version": "4.1.8",
    "default_locale": "en",
    "description": "__MSG_ManifestDescription__",
    "icons": {
        "16": "img\/map_16.png",
        "32": "img\/map_32.png",
        "48": "img\/map_48.png",
        "128": "img\/map_128.png",
        "256": "img\/map_256.png"
    },
    "browser_action": {
        "default_title": "CacheList",
        "default_icon": "\/img\/map_256.png",
        "default_popup": "popup.html"
    },
    "author": "Radek Baxa",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.geocaching.com\/map\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content-script-map2.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.geocaching.com\/geocache\/*",
                "https:\/\/www.geocaching.com\/seek\/cache_details.aspx*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content-script-cache.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "https:\/\/www.geocaching.com\/*"
    ]
}