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.
Cos'è Fit YT to Width?
Fit YT to Width è un'estensione di Chrome sviluppata da Andrew Lansing, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione Fit YT to Width
Scarica i file di estensione Fit YT to Width in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ijigameikofpgbincaiclnjlifjfekpf |
URL Ufficiale | https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf |
Descrizione | Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook. |
Dimensione del File | 7.14 KB |
Conteggio Installazioni | 167 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-07-18 |
Data di Pubblicazione | 2017-07-18 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Andrew Lansing |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |