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 |
| 官方網址 | 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"
]
}
]
} | |