BetterCacher

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

Qu'est-ce que BetterCacher ?

BetterCacher est une extension Chrome développée par https://bettercacher.org, et sa fonction principale est "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BetterCacher

Téléchargez les fichiers d'extension BetterCacher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
URL Officiel https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl
Description The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Taille du Fichier 60.67 KB
Nombre d'Installations 173
Version Actuelle 1.0.8
Dernière Mise à Jour 2023-09-05
Date de Publication 2020-04-25
Développeur https://bettercacher.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://bettercacher.org/addons
URL de la Page d'Aide https://bettercacher.org/support
URL de la Page de Politique de Confidentialité https://bettercacher.org/data-protection
Langues Prises en Charge 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"
    }
}