BetterCacher

The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.

Co je BetterCacher?

BetterCacher je rozšíření Chrome vyvinuté https://bettercacher.org, a jeho hlavní funkcí je „The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření BetterCacher

Stáhněte si soubory rozšíření BetterCacher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Powered by the BetterCacher API. Supports the languages English, German, Dutch and Polish.

What is BetterCacher?
More information can be found here: 
bettercacher.org/redirecting?link=how-it-works                    

Základní Informace o Rozšíření

Název BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
Oficiální URL https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl
Popis The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Velikost souboru 60.67 KB
Počet instalací 173
Aktuální Verze 1.0.8
Poslední Aktualizace 2023-09-05
Datum Vydání 2020-04-25
Vývojář https://bettercacher.org
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://bettercacher.org/addons
URL Stránky Nápovědy https://bettercacher.org/support
URL Stránky Zásad Ochrany Soukromí https://bettercacher.org/data-protection
Podporované Jazyky de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BetterCacher",
    "short_name": "BetterCacher",
    "version": "1.0.8",
    "author": "BetterCacher Team",
    "manifest_version": 3,
    "default_locale": "en",
    "description": "__MSG_description__",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.geocaching.com\/*",
                "http:\/\/*.geocaching.com\/*",
                "https:\/\/*.bettercacher.org\/*"
            ],
            "js": [
                "jquery.min.js",
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "https:\/\/*.geocaching.com\/*",
        "http:\/\/*.geocaching.com\/*",
        "https:\/\/*.bettercacher.org\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon_16.png",
        "128": "icon_128.png"
    }
}