CacheVote

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

CacheVote란 무엇입니까?

CacheVote은(는) fabian.schedler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for Geocaching.com which allows you to rate geocaches and shows the ratings of other users. (Replacement for gcVote)"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        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\/*"
    ]
}