Reverse Youtube
Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
ما هو Reverse Youtube؟
Reverse Youtube هو إضافة Chrome تم تطويرها بواسطة https://citadelle-du-web.com، والميزة الرئيسية لها هي "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Reverse Youtube
قم بتنزيل ملفات الامتداد Reverse Youtube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension swaps 'primary video' and 'related contents' layouts in youtube.com
معلومات أساسية عن التمديد
الاسم | Reverse Youtube |
ID | bbkebkkkocmacciojigkliggadljbmai |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai |
الوصف | Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts. |
حجم الملف | 53.5 KB |
عدد التثبيتات | 583 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-03-05 |
تاريخ النشر | 2021-03-04 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | https://citadelle-du-web.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://citadelle-du-web.com/projects/reverse-youtube |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "Reverse Youtube", "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.", "permissions": [ "storage" ], "browser_action": { "default_title": "Reverse Youtube", "default_popup": "popup.html", "default_icon": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |