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 |
| Eメール | [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\/*"
]
} | |