YouTubePlayer
Control YouTube videos across all tabs and windows from extension bar
ما هو YouTubePlayer؟
YouTubePlayer هو إضافة Chrome تم تطويرها بواسطة Akshaya Kumar، والميزة الرئيسية لها هي "Control YouTube videos across all tabs and windows from extension bar".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTubePlayer
قم بتنزيل ملفات الامتداد YouTubePlayer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.
معلومات أساسية عن التمديد
الاسم | YouTubePlayer |
ID | djfdkfcebbbehfmibkkhneofknamohoi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi |
الوصف | Control YouTube videos across all tabs and windows from extension bar |
حجم الملف | 100 KB |
عدد التثبيتات | 31 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2019-08-04 |
تاريخ النشر | 2019-08-03 |
المطور | Akshaya Kumar |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubePlayer", "version": "1.0.0", "description": "Control YouTube videos across all tabs and windows from extension bar", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |