BetterCacher

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

O que é BetterCacher?

BetterCacher é uma extensão do Chrome desenvolvida por https://bettercacher.org, e sua principal característica é "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão BetterCacher

Baixe arquivos de extensão BetterCacher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
URL Oficial https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl
Descrição The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
Tamanho do Arquivo 60.67 KB
Contagem de Instalações 173
Versão Atual 1.0.8
Última Atualização 2023-09-05
Data de Publicação 2020-04-25
Desenvolvedor https://bettercacher.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bettercacher.org/addons
URL da Página de Ajuda https://bettercacher.org/support
URL da Página de Política de Privacidade https://bettercacher.org/data-protection
Idiomas Suportados 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"
    }
}