GOG Prices

Displays regional prices on GOG.

GOG Prices란 무엇입니까?

GOG Prices은(는) joludelgar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays regional prices on GOG."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        GOG Prices is an extension to display the prices of the GOG.com website for different regions. The extension uses GOG's own API to query the different prices and display them on the product pages themselves.

New features:
- Now you can create your own personalized list of countries. Go to options to start creating your list.
- New partial translations added: Russian and Turkish.

Extension web: https://joludelgar.github.io/gog-prices/
Help me with the translation into your language: https://es.crowdin.com/project/gog-prices

To contact and get technical support or send me questions and suggestions, write to me at:  [email protected]                    

확장 프로그램 기본 정보

이름 GOG Prices GOG Prices
ID kcefipchcfefiiongihkadehlfdlfdjm
공식 URL https://chromewebstore.google.com/detail/gog-prices/kcefipchcfefiiongihkadehlfdlfdjm
설명 Displays regional prices on GOG.
파일 크기 348 KB
설치 횟수 649
현재 버전 0.1.1
최근 업데이트 2024-02-06
출시 날짜 2023-06-08
평점 5.00/5 총 2 개의 평점
개발자 joludelgar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://joludelgar.github.io/gog-prices/
개인정보 보호 정책 페이지 URL https://joludelgar.github.io/gog-prices/privacy.html
지원되는 언어 en,fr,tr,es,pt-BR,pt-PT,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.1.1",
    "action": {
        "default_icon": "assets\/gog-prices-icon48.png"
    },
    "icons": {
        "16": "assets\/gog-prices-icon16.png",
        "48": "assets\/gog-prices-icon48.png",
        "128": "assets\/gog-prices-icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.gog.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "options\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/bg.js"
            ],
            "css": [
                "styles\/styles.css"
            ],
            "matches": [
                "*:\/\/*.gog.com\/*"
            ]
        }
    ]
}