VKPlay.live Now
The extension allows you to display information about streams from the site VK Play.live
ما هو VKPlay.live Now؟
VKPlay.live Now هو إضافة Chrome تم تطويرها بواسطة ejik.mycode، والميزة الرئيسية لها هي "The extension allows you to display information about streams from the site VK Play.live".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة VKPlay.live Now
قم بتنزيل ملفات الامتداد VKPlay.live Now بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The extension allows you to quickly see, without going to the site, which of the streamers you are subscribed to stream.
معلومات أساسية عن التمديد
الاسم | VKPlay.live Now |
ID | fbhdmbicggajjgfbnikcdebjhdjkpcbe |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/vkplaylive-now/fbhdmbicggajjgfbnikcdebjhdjkpcbe |
الوصف | The extension allows you to display information about streams from the site VK Play.live |
حجم الملف | 40.58 KB |
عدد التثبيتات | 158 |
النسخة الحالية | 1.12 |
آخر تحديث | 2024-02-07 |
تاريخ النشر | 2023-03-05 |
تقييم | 5.00/5 مجموع تقييمات 9 |
المطور | ejik.mycode |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f |
اللغات المدعومة | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.12", "content_scripts": [ { "matches": [ "*:\/\/api.vkplay.live\/*", "*:\/\/vkplay.live\/*" ], "js": [ "contentScripts.js" ], "run_at": "document_idle" } ], "host_permissions": [ "*:\/\/vkplay.live\/*" ], "action": { "default_title": "VKPlay.live Now", "default_popup": "popup.html" }, "permissions": [ "storage", "alarms", "cookies", "scripting" ], "background": { "service_worker": "background.js" }, "icons": { "16": "img\/icon_16.png", "32": "img\/icon_32.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "executeBonus.js" ], "matches": [ "*:\/\/vkplay.live\/*" ] } ] } |