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
公式URL 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
Eメール [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\/*"
    ]
}