FullTube
This a extension to maximize the youtube player size.
FullTube là gì?
FullTube là một tiện ích mở rộng Chrome được phát triển bởi https://bijinapps.blogspot.com, và tính năng chính của nó là "This a extension to maximize the youtube player size.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng FullTube
Tải xuống các tệp mở rộng FullTube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
URL Chính Thức | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Mô tả | This a extension to maximize the youtube player size. |
Kích Thước Tệp | 6.46 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 1.9 |
Cập Nhật Lần Cuối | 2019-04-18 |
Ngày Phát Hành | 2019-04-18 |
Nhà Phát Triển | https://bijinapps.blogspot.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.bijinapps.blogspot.in |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |