No AutoPlay
Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
Τι είναι το No AutoPlay;
Το No AutoPlay είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jccovey, και η κύρια λειτουργία του είναι "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.".
Λήψη αρχείου CRX της επέκτασης No AutoPlay
Λήψη αρχείων επέκτασης No AutoPlay σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Limited to YouTube videos. The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.
Βασικές Πληροφορίες Επέκτασης
Όνομα | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
Επίσημο URL | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
Περιγραφή | Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab. |
Μέγεθος Αρχείου | 4.07 KB |
Αριθμός Εγκαταστάσεων | 116 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2017-12-06 |
Ημερομηνία Δημοσίευσης | 2017-12-06 |
Αξιολόγηση | 3.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | jccovey |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No AutoPlay", "version": "1.0.0", "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.", "permissions": [], "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtu.be\/*", "https:\/\/*.youtu.be\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |