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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}