HTML5 Autoplay Blocker

Disables autoplay of all HTML5 audio and video

Τι είναι το HTML5 Autoplay Blocker;

Το HTML5 Autoplay Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dov Pins, και η κύρια λειτουργία του είναι "Disables autoplay of all HTML5 audio and video".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης HTML5 Autoplay Blocker

Λήψη αρχείων επέκτασης HTML5 Autoplay Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Disables autoplay of all HTML5 audio and video
THIS EXTENSION IS CURRENTLY UNMAINTAINED; Please see GitHub for the latest news: https://github.com/Eloston/disable-html5-autoplay/blob/master/README.md

======================

Disable HTML5 Autoplay disables HTML5 audio and video autoplaying.

In addition to removing the HTML autoplay attribute from media elements, Disable HTML5 Autoplay also hooks into the media's JavaScript API. This allows for restrictions on media control and simulation of expected behavior to ensure that all pages behave normally.

Head over to the wiki for documentation, support info, and more: https://github.com/Eloston/disable-html5-autoplay/wiki

LINKS:
GitHub Page:  https://github.com/Eloston/disable-html5-autoplay
Changelog: https://github.com/Eloston/disable-html5-autoplay/releases
Issue Tracker: https://github.com/Eloston/disable-html5-autoplay/issues

From Version 1.2 we rewrited all the code and solved most of the major problems,
Please send us feedback if there is any new bugs/problems.
Enjoy :)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HTML5 Autoplay Blocker HTML5 Autoplay Blocker
ID icppkihnmgkncknjlfkkjgfgoifkcgii
Επίσημο URL https://chrome.google.com/webstore/detail/html5-autoplay-blocker/icppkihnmgkncknjlfkkjgfgoifkcgii
Περιγραφή Disables autoplay of all HTML5 audio and video
Μέγεθος Αρχείου 564 KB
Αριθμός Εγκαταστάσεων 23,687
Τρέχουσα Έκδοση 1.5.0
Τελευταία Ενημέρωση 2019-12-24
Ημερομηνία Δημοσίευσης 2019-12-24
Αξιολόγηση 3.53/5 Συνολικά 202 Αξιολογήσεις
Προγραμματιστής Dov Pins
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Eloston/disable-html5-autoplay
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/e/2PACX-1vTuHh7PLGHUqcVkK84Ms14N3B6ScKrpYCStUiDVOneUsh4_CfnTI70n686wd5OPjIBGSGjUgaZiQOo2/pub
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Autoplay Blocker",
    "short_name": "DisableAutoplay",
    "description": "Disables autoplay of all HTML5 audio and video",
    "version": "1.5.0",
    "author": "Eloston",
    "homepage_url": "https:\/\/github.com\/Eloston\/disable-html5-autoplay\/",
    "minimum_chrome_version": "44.0",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/dormant_19.png",
            "38": "images\/dormant_38.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [],
        "page": "bg.html",
        "persistent": true
    },
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "",
        "storage",
        "unlimitedStorage",
        "background",
        "webRequest",
        "webRequestBlocking"
    ]
}