FullTube
This a extension to maximize the youtube player size.
Apa itu FullTube?
FullTube adalah ekstensi Chrome yang dikembangkan oleh https://bijinapps.blogspot.com, dan fitur utamanya adalah "This a extension to maximize the youtube player size.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi FullTube
Unduh file ekstensi FullTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Informasi Dasar Ekstensi
Nama | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
URL Resmi | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Deskripsi | This a extension to maximize the youtube player size. |
Ukuran File | 6.46 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 1.9 |
Terakhir Diperbarui | 2019-04-18 |
Tanggal Publikasi | 2019-04-18 |
Pengembang | https://bijinapps.blogspot.com |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.bijinapps.blogspot.in |
Bahasa yang Didukung | 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" } ] } |