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文件
下载Divine Shop Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } |