Csgopolygon Withdraw Assistant
A chrome extension for retrieving new items in the withdraw panel
什么是Csgopolygon Withdraw Assistant?
Csgopolygon Withdraw Assistant是由https://www.protogalaxy.me开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension for retrieving new items in the withdraw panel”。
扩展截图
下载Csgopolygon Withdraw Assistant扩展crx文件
下载Csgopolygon Withdraw Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension for retrieving new items in the withdraw panel in csgopolygon.com. 扩展基本信息
| 名称 | |
| ID | hbjkpapgkolonobiohhihjlbfeihcbio |
| 官方URL | https://chromewebstore.google.com/detail/csgopolygon-withdraw-assi/hbjkpapgkolonobiohhihjlbfeihcbio |
| 简介 | A chrome extension for retrieving new items in the withdraw panel |
| 文件大小 | 112 KB |
| 安装次数 | 19 |
| 当前版本 | 0.9 |
| 更新时间 | 2017-11-08 |
| 上架时间 | 2017-11-08 |
| 开发者 | https://www.protogalaxy.me |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.protogalaxy.me |
| 帮助页面URL | https://github.com/SolitudeRA/CSGOPolygon-withdraw-assistant |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Csgopolygon Withdraw Assistant",
"short_name": "Withdraw Assistant",
"description": "A chrome extension for retrieving new items in the withdraw panel",
"version": "0.9",
"icons": {
"16": "assets\/images\/icon16.png",
"48": "assets\/images\/icon48.png",
"128": "assets\/images\/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "assets\/images\/icon16.png",
"24": "assets\/images\/icon24.png",
"32": "assets\/images\/icon32.png"
},
"default_title": "Withdraw Assistant",
"default_popup": "popup.html"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"assets\/imports\/jquery-3.2.1.min.js",
"eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/csgopolygon.com\/withdraw.php"
],
"css": [
"assets\/css\/withdraw.css"
],
"js": [
"assets\/imports\/jQuery-3.2.1.min.js",
"assets\/js\/withdraw.js"
]
}
]
} | |