Fit YT to Width
Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.
Apa itu Fit YT to Width?
Fit YT to Width adalah ekstensi Chrome yang dikembangkan oleh Andrew Lansing, dan fitur utamanya adalah "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Fit YT to Width
Unduh file ekstensi Fit YT to Width 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
Tip: Chromebook users can make use of the alt + [ and alt + ] shortcuts to resize windows to fit half of your screen as seen in the screenshot
Informasi Dasar Ekstensi
Nama | |
ID | ijigameikofpgbincaiclnjlifjfekpf |
URL Resmi | https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf |
Deskripsi | Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook. |
Ukuran File | 7.14 KB |
Jumlah Instalasi | 167 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2017-07-18 |
Tanggal Publikasi | 2017-07-18 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Andrew Lansing |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fit YT to Width", "version": "1.2", "description": "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.", "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_icon": "icon.png", "default_title": "Fit YT to Witdh" }, "content_scripts": [ { "css": [ "styles.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "permissions": [ "declarativeContent", "https:\/\/www.youtube.com\/*", "tabs" ], "manifest_version": 2 } |