BetterCacher

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

What is BetterCacher?

BetterCacher is a Chrome extension developed by https://bettercacher.org, and its main feature is "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".

Extension Screenshots

screenshot

Download BetterCacher Extension CRX File

Download BetterCacher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
Official URL 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.
File Size 60.67 KB
Installation Count 173
Current Version 1.0.8
Last Updated 2023-09-05
Publish Date 2020-04-25
Developer https://bettercacher.org
Email [email protected]
Payment Type free
Extension Website https://bettercacher.org/addons
Help Page URL https://bettercacher.org/support
Privacy Policy Page URL https://bettercacher.org/data-protection
Supported Languages 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"
    }
}