Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
ما هو Automatic Fullscreen on Crunchyroll؟
Automatic Fullscreen on Crunchyroll هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Click on the switch buttom, press F11 and stay in your bed ;)".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Automatic Fullscreen on Crunchyroll
قم بتنزيل ملفات الامتداد Automatic Fullscreen on Crunchyroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension automatically makes the crunchyroll video-player fullscreen when you open the page. Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll
معلومات أساسية عن التمديد
الاسم | Automatic Fullscreen on Crunchyroll |
ID | pcbinggjelhcbebilcmlikomcgiippjb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
الوصف | Click on the switch buttom, press F11 and stay in your bed ;) |
حجم الملف | 17.22 KB |
عدد التثبيتات | 365 |
النسخة الحالية | 0.3 |
آخر تحديث | 2020-04-12 |
تاريخ النشر | 2020-04-12 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automatic Fullscreen on Crunchyroll", "version": "0.3", "description": "Click on the switch buttom, press F11 and stay in your bed ;)", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*\/*", "http:\/\/www.crunchyroll.com\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_title": "Automatic Fullscreen on Crunchyroll", "default_popup": "popup.html", "default_icon": "icons\/icon_disabled_16.png" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |