Divine Shop Extension
Divine Shop Extension makes it easier to buy games from Steam
Divine Shop Extension là gì?
Divine Shop Extension là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Divine Shop Extension makes it easier to buy games from Steam".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Divine Shop Extension
Tải xuống các tệp mở rộng Divine Shop Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Divine Shop Extension |
ID | mcooicaephmnnieacffgaloljidmcpap |
URL Chính Thức | https://chromewebstore.google.com/detail/divine-shop-extension/mcooicaephmnnieacffgaloljidmcpap |
Mô tả | Divine Shop Extension makes it easier to buy games from Steam |
Kích Thước Tệp | 56.14 KB |
Số Lần Cài Đặt | 150 |
Phiên Bản Hiện Tại | 1.0.7 |
Cập Nhật Lần Cuối | 2022-02-22 |
Ngày Phát Hành | 2020-03-31 |
Đánh Giá | 4.88/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://divineshop.vn/ |
URL Trang Trợ Giúp | https://divineshop.vn/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } |