Stop Youtube Autoplay
This extension allows you to disable autoplay by default on Youtube
Τι είναι το Stop Youtube Autoplay;
Το Stop Youtube Autoplay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joseph Feld, και η κύρια λειτουργία του είναι "This extension allows you to disable autoplay by default on Youtube".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Stop Youtube Autoplay
Λήψη αρχείων επέκτασης Stop Youtube Autoplay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup. Feel free to contact me if you find any issues or have any suggestions. This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | npcghnpganhnghapekiicaeiobnhbbfa |
Επίσημο URL | https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa |
Περιγραφή | This extension allows you to disable autoplay by default on Youtube |
Μέγεθος Αρχείου | 41.84 KB |
Αριθμός Εγκαταστάσεων | 5,000 |
Τρέχουσα Έκδοση | 1.3 |
Τελευταία Ενημέρωση | 2018-10-29 |
Ημερομηνία Δημοσίευσης | 2018-10-29 |
Αξιολόγηση | 3.02/5 Συνολικά 60 Αξιολογήσεις |
Προγραμματιστής | Joseph Feld |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop Youtube Autoplay", "short_name": "No Autoplay", "description": "This extension allows you to disable autoplay by default on Youtube", "version": "1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "scripts": [ "background.js" ], "persistent": false } } |