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.
Τι είναι το Fit YT to Width;
Το Fit YT to Width είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrew Lansing, και η κύρια λειτουργία του είναι "Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fit YT to Width
Λήψη αρχείων επέκτασης Fit YT to Width σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | ijigameikofpgbincaiclnjlifjfekpf |
Επίσημο URL | https://chrome.google.com/webstore/detail/fit-yt-to-width/ijigameikofpgbincaiclnjlifjfekpf |
Περιγραφή | Fits a Youtube video to the width of its window when viewing in a narrow window, designed for using dual windows on a chromebook. |
Μέγεθος Αρχείου | 7.14 KB |
Αριθμός Εγκαταστάσεων | 167 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2017-07-18 |
Ημερομηνία Δημοσίευσης | 2017-07-18 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Andrew Lansing |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } |