FullTube
This a extension to maximize the youtube player size.
ما هو FullTube؟
FullTube هو إضافة Chrome تم تطويرها بواسطة https://bijinapps.blogspot.com، والميزة الرئيسية لها هي "This a extension to maximize the youtube player size.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FullTube
قم بتنزيل ملفات الامتداد FullTube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
معلومات أساسية عن التمديد
الاسم | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
الوصف | This a extension to maximize the youtube player size. |
حجم الملف | 6.46 KB |
عدد التثبيتات | 13 |
النسخة الحالية | 1.9 |
آخر تحديث | 2019-04-18 |
تاريخ النشر | 2019-04-18 |
المطور | https://bijinapps.blogspot.com |
نوع الدفع | free |
موقع الإضافة | http://www.bijinapps.blogspot.in |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FullTube", "version": "1.9", "description": "This a extension to maximize the youtube player size.", "icons": { "48": "icons\/youtube.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&t=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_t.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?time_continue=*&v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_tc.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" } ] } |