CacheList

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

¿Qué es CacheList?

CacheList es una extensión de Chrome desarrollada por https://radekbaxa.cz, y su función principal es "CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CacheList

Descarga archivos de extensión CacheList en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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”.                    

Información Básica de la Extensión

Nombre CacheList CacheList
ID amhhdbdhoghppijbjfdkiaconkmfbbpa
URL Oficial https://chromewebstore.google.com/detail/cachelist/amhhdbdhoghppijbjfdkiaconkmfbbpa
Descripción CacheList is plugin for Geocaching. It makes it easy to create a printable list of caches and generating LOC, GPX, WPT, KML... files
Tamaño del Archivo 584 KB
Cantidad de Instalaciones 10,528
Versión Actual 4.1.8
Última Actualización 2020-06-21
Fecha de Publicación 2020-06-20
Calificación 4.65/5 Total de 130 Calificaciones
Desarrollador https://radekbaxa.cz
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
URL de la Página de Ayuda https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
URL de la Página de Política de Privacidad https://www.radekbaxa.cz/chrome-extension-privacy-policy.html
Idiomas Soportados 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\/*"
    ]
}