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.
Vad är Fit YT to Width?
Fit YT to Width är en Chrome-tillägg utvecklad av Andrew Lansing, och dess huvudfunktion är "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".
Tilläggsskärmbilder
Ladda ner Fit YT to Width-förlängningens CRX-fil
Ladda ner Fit YT to Width-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | ijigameikofpgbincaiclnjlifjfekpf |
Officiell webbadress | https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf |
Beskrivning | Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook. |
Filstorlek | 7.14 KB |
Antal Installationer | 167 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2017-07-18 |
Publiceringsdatum | 2017-07-18 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Andrew Lansing |
Betalningssätt | free |
Stödda Språk | 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 } |