BetterCacher

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

Cos'è BetterCacher?

BetterCacher è un'estensione di Chrome sviluppata da https://bettercacher.org, e la sua funzione principale è "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BetterCacher

Scarica i file di estensione BetterCacher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
URL Ufficiale https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl
Descrizione The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Dimensione del File 60.67 KB
Conteggio Installazioni 173
Versione Corrente 1.0.8
Ultimo Aggiornamento 2023-09-05
Data di Pubblicazione 2020-04-25
Sviluppatore https://bettercacher.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bettercacher.org/addons
URL della Pagina di Aiuto https://bettercacher.org/support
URL della Pagina della Politica sulla Privacy https://bettercacher.org/data-protection
Lingue Supportate 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"
    }
}