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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | CS Accounts Extension |
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\/*" ] } |