CS Accounts Extension
csaccounts.com extension to view CS accounts in steam profile page
Что такое CS Accounts Extension?
CS Accounts Extension - это расширение Chrome, разработанное saddiqs1, и его основная функция - "csaccounts.com extension to view CS accounts in steam profile page".
Снимки экрана расширения
Скачать файл CRX расширения CS Accounts Extension
Скачайте файлы расширений 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\/*"
]
} | |