CS Accounts Extension
csaccounts.com extension to view CS accounts in steam profile page
Hvad er CS Accounts Extension?
CS Accounts Extension er en Chrome-udvidelse udviklet af saddiqs1, og dens hovedfunktion er "csaccounts.com extension to view CS accounts in steam profile page".
Udvidelsesskærmbilleder
Download CS Accounts Extension-udvidelses-CRX-fil
Download CS Accounts Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hmkcdlbelaggmkddoebdbenhchpmfcbb |
| Officiel URL | https://chromewebstore.google.com/detail/cs-accounts-extension/hmkcdlbelaggmkddoebdbenhchpmfcbb |
| Beskrivelse | csaccounts.com extension to view CS accounts in steam profile page |
| Filstørrelse | 23.98 KB |
| Antal Installationer | 125 |
| Nuværende Version | 1.1.0 |
| Senest Opdateret | 2023-05-15 |
| Udgivelsesdato | 2023-05-14 |
| Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
| Udvikler | saddiqs1 |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://csaccounts.com |
| Understøttede Sprog | 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\/*"
]
} | |