CS Accounts Extension
csaccounts.com extension to view CS accounts in steam profile page
What is CS Accounts Extension?
CS Accounts Extension is a Chrome extension developed by saddiqs1, and its main feature is "csaccounts.com extension to view CS accounts in steam profile page".
Extension Screenshots
Download CS Accounts Extension Extension CRX File
Download CS Accounts Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | CS Accounts Extension |
ID | hmkcdlbelaggmkddoebdbenhchpmfcbb |
Official URL | https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb |
Description | csaccounts.com extension to view CS accounts in steam profile page |
File Size | 23.98 KB |
Installation Count | 125 |
Current Version | 1.1.0 |
Last Updated | 2023-05-15 |
Publish Date | 2023-05-14 |
Rating | 5.00/5 Total 4 Ratings |
Developer | saddiqs1 |
[email protected] | |
Payment Type | free |
Extension Website | https://csaccounts.com |
Supported Languages | 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\/*" ] } |