BetterCacher

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

ما هو BetterCacher؟

BetterCacher هو إضافة Chrome تم تطويرها بواسطة https://bettercacher.org، والميزة الرئيسية لها هي "The BetterCacher Chrome extension will show you on the geocaching.com page if the cache is listed on BetterCacher.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة BetterCacher

قم بتنزيل ملفات الامتداد BetterCacher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://bettercacher.org/support
عنوان صفحة سياسة الخصوصية 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"
    }
}