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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CacheList एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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\/*"
    ]
}