BetterCacher

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

BetterCacher란 무엇입니까?

BetterCacher은(는) https://bettercacher.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher."입니다.

확장 프로그램 스크린샷

screenshot

BetterCacher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 BetterCacher BetterCacher
ID lbbohdofgdoajgpaafihgcbgpciecocl
공식 URL https://chromewebstore.google.com/detail/bettercacher/lbbohdofgdoajgpaafihgcbgpciecocl
설명 The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.
파일 크기 60.67 KB
설치 횟수 173
현재 버전 1.0.8
최근 업데이트 2023-09-05
출시 날짜 2020-04-25
개발자 https://bettercacher.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bettercacher.org/addons
도움말 페이지 URL https://bettercacher.org/support
개인정보 보호 정책 페이지 URL https://bettercacher.org/data-protection
지원되는 언어 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"
    }
}