CS Accounts Extension
csaccounts.com extension to view CS accounts in steam profile page
什麼是CS Accounts Extension?
CS Accounts Extension是由saddiqs1開發的Chrome擴展程式,該擴展的主要功能是“csaccounts.com extension to view CS accounts in steam profile page”。
擴展截圖
下載CS Accounts Extension擴展crx文件
下載CS Accounts Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When viewing a steam profile page, you will be able to see their faceit and esea account embedded on the page.
*NOTE*: ESEA profiles will not work 100% of the time. 擴展基本資訊
| 名稱 | |
| ID | hmkcdlbelaggmkddoebdbenhchpmfcbb |
| 官方網址 | https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb |
| 簡介 | csaccounts.com extension to view CS accounts in steam profile page |
| 檔案大小 | 23.98 KB |
| 安裝次數 | 125 |
| 目前版本 | 1.1.0 |
| 更新時間 | 2023-05-15 |
| 上架時間 | 2023-05-14 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | saddiqs1 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://csaccounts.com |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CS Accounts Extension",
"description": "csaccounts.com extension to view CS accounts in steam profile page",
"version": "1.1.0",
"action": {
"default_icon": {
"16": "icon-16x16.png",
"32": "icon-32x32.png",
"48": "icon-32x32.png",
"128": "icon-32x32.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.steamcommunity.com\/id\/*",
"*:\/\/*.steamcommunity.com\/profiles\/*"
],
"exclude_matches": [
"*:\/\/*.steamcommunity.com\/id\/*\/allcomments*",
"*:\/\/*.steamcommunity.com\/profiles\/*\/allcomments*"
],
"css": [
"style.css"
],
"js": [
"js\/content_script.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"host_permissions": [
"https:\/\/csaccounts.com\/api\/*"
]
} | |