Divine Shop Extension
Divine Shop Extension makes it easier to buy games from Steam
Divine Shop Extension란 무엇입니까?
Divine Shop Extension은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Divine Shop Extension makes it easier to buy games from Steam"입니다.
확장 프로그램 스크린샷
Divine Shop Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension adds a purchase button for apps at Steam that shows the price from Divine Shop and directs user to the app page at Divine Shop.
확장 프로그램 기본 정보
이름 | Divine Shop Extension |
ID | mcooicaephmnnieacffgaloljidmcpap |
공식 URL | https://chromewebstore.google.com/detail/divine-shop-extension/mcooicaephmnnieacffgaloljidmcpap |
설명 | Divine Shop Extension makes it easier to buy games from Steam |
파일 크기 | 56.14 KB |
설치 횟수 | 150 |
현재 버전 | 1.0.7 |
최근 업데이트 | 2022-02-22 |
출시 날짜 | 2020-03-31 |
평점 | 4.88/5 총 16 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://divineshop.vn/ |
도움말 페이지 URL | https://divineshop.vn/ |
지원되는 언어 | vi |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/store.steampowered.com\/app\/*", "https:\/\/store.steampowered.com\/sub\/*" ], "js": [ "content-script.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "description": "Divine Shop Extension makes it easier to buy games from Steam", "browser_action": { "default_icon": { "16": "divine-16.png", "46": "divine-48.png" } }, "icons": { "16": "divine-16.png", "48": "divine-48.png", "96": "divine-96.png", "128": "divine-128.png" }, "web_accessible_resources": [ "divine-24.png" ], "name": "Divine Shop Extension", "version": "1.0.7" } |