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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |