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 |
| 官方URL | 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\/*"
]
} | |