CS Accounts Extension
csaccounts.com extension to view CS accounts in steam profile page
Was ist CS Accounts Extension?
CS Accounts Extension ist eine Chrome-Erweiterung, die von saddiqs1 entwickelt wurde, und ihr Hauptmerkmal ist "csaccounts.com extension to view CS accounts in steam profile page".
Erweiterungsscreenshots
CS Accounts Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie CS Accounts Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | CS Accounts Extension |
ID | hmkcdlbelaggmkddoebdbenhchpmfcbb |
Offizielle URL | https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb |
Beschreibung | csaccounts.com extension to view CS accounts in steam profile page |
Dateigröße | 23.98 KB |
Installationsanzahl | 125 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2023-05-15 |
Veröffentlichungsdatum | 2023-05-14 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | saddiqs1 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://csaccounts.com |
Unterstützte Sprachen | 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\/*" ] } |