Video Volume Sync
Synchronizes the volume of html videos tags on any website.
Τι είναι το Video Volume Sync;
Το Video Volume Sync είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dev.drew.rash, και η κύρια λειτουργία του είναι "Synchronizes the volume of html videos tags on any website.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Volume Sync
Λήψη αρχείων επέκτασης Video Volume Sync σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It lowers the video volume on websites, any website. Websites that like to max the volume on their video's by default as they load and not remember your volume choice from before. It's really good for those websites. I know of 1 that starts with an F and end's in a K, that's definitely one this is good for. Specifically though, it sets the volume to 10% and then remembers your choice for the rest of the video's scrolling on the page. It set's the volume of loaded videos OnLoad, so if you set the volume to 50% and there are 5 video's that loaded before you changed it, those 5 will still by 10% but the next one to load will be 50%. Quite minimal. It's like such little code I could paste it here. I made a grease monkey script long ago and then I made this for those people. Then a fancy lawyer came along and took down my extension because it used a magical word that is trademarked like half the extensions in the chrome store and now it's back. Enjoy.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Video Volume Sync |
ID | fpdigdejpglgjlfjalijpehgbpgmpfoh |
Επίσημο URL | https://chromewebstore.google.com/detail/video-volume-sync/fpdigdejpglgjlfjalijpehgbpgmpfoh |
Περιγραφή | Synchronizes the volume of html videos tags on any website. |
Μέγεθος Αρχείου | 12.3 KB |
Αριθμός Εγκαταστάσεων | 168 |
Τρέχουσα Έκδοση | 1.0.5 |
Τελευταία Ενημέρωση | 2018-07-26 |
Ημερομηνία Δημοσίευσης | 2018-07-25 |
Αξιολόγηση | 4.50/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | dev.drew.rash |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Volume Sync", "short_name": "Vol Sync", "description": "Synchronizes the volume of html videos tags on any website.", "version": "1.0.5", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_start", "js": [ "filter.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "Click me for info!" }, "permissions": [ "storage" ] } |