CacheVote

An extension for Geocaching.com which allows you to rate geocaches and shows the ratings of other users. (Replacement for gcVote)

CacheVoteคืออะไร?

CacheVote เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fabian.schedler และคุณลักษณะหลักของมันคือ "An extension for Geocaching.com which allows you to rate geocaches and shows the ratings of other users. (Replacement for gcVote)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CacheVote

ดาวน์โหลดไฟล์ส่วนขยาย CacheVote ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        CacheVote is an extension for Geocaching.com. It adds new controls to Geocaching.com that let you rate geocaches directly on the website and shows you the average rating of other users.

Everyone who has installed the extension can see the average ratings, but only registered users can rate themselves.
More information and instructions can be found at https://cachevote.org


CacheVote is the successor of gcVote.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CacheVote CacheVote
ID gfmggljgbbmapipjniklonbdagmhgkgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cachevote/gfmggljgbbmapipjniklonbdagmhgkgo
คำอธิบาย An extension for Geocaching.com which allows you to rate geocaches and shows the ratings of other users. (Replacement for gcVote)
ขนาดไฟล์ 44.68 KB
จำนวนการติดตั้ง 124
เวอร์ชันปัจจุบัน 0.0.7
อัปเดตครั้งล่าสุด 2021-07-31
วันที่เผยแพร่ 2020-12-30
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา fabian.schedler
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cachevote.org
URL หน้าช่วยเหลือ https://cachevote.org/faq
URL หน้านโยบายความเป็นส่วนตัว https://cachevote.org/privacy
ภาษาที่รองรับ de,en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CacheVote",
    "version": "0.0.7",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "author": "Fabian Schedler",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "homepage_url": "https:\/\/cachevote.org",
    "content_scripts": [
        {
            "js": [
                "src\/helpers\/globals.js",
                "src\/helpers\/serverErrors.js",
                "src\/helpers\/settings.js",
                "src\/content\/cacheVoteSettings.js",
                "src\/content\/main.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "matches": [
                "https:\/\/www.geocaching.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "src\/content\/gcDetails.js"
            ],
            "matches": [
                "https:\/\/www.geocaching.com\/geocache\/GC*",
                "https:\/\/www.geocaching.com\/seek\/cache_details.aspx?*wp=GC*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "src\/content\/gcLog.js"
            ],
            "matches": [
                "https:\/\/www.geocaching.com\/play\/geocache\/gc*\/log",
                "https:\/\/www.geocaching.com\/seek\/log.aspx*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "src\/content\/gcSearchList.js"
            ],
            "matches": [
                "https:\/\/www.geocaching.com\/play\/search?*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "src\/content\/ownedList.js"
            ],
            "matches": [
                "https:\/\/www.geocaching.com\/play\/owner\/published"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "src\/helpers\/globals.js",
            "src\/helpers\/serverErrors.js",
            "src\/background\/templates.js",
            "src\/background\/background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/icon32.png"
    ],
    "permissions": [
        "cookies",
        "storage",
        "https:\/\/www.geocaching.com\/*",
        "https:\/\/api.cachevote.org\/*"
    ]
}