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