Video Blocker

Block videos from playing.

Τι είναι το Video Blocker;

Το Video Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ben Plowman, και η κύρια λειτουργία του είναι "Block videos from playing.".

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

screenshot
screenshot

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

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

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

                        Video Blocker stops annoying autoplay videos before they start.

* Prevents all web videos from automatically playing on pages.
* Allows you to whitelist specific domains like youtube.com where you want videos to play.
* Allows you to enable a single video by clicking on the video directly.
* If you find a video this extension is not currently blocking, I'd love to hear about it. Hit me up on twitter @benplowman.

New in version 1.2 (October 2022):
* Fixed a bug where several languages were poorly translated.
* Migrated to the latest version of the Chrome Extensions framework (manifest v3)

New in version 1.1:
* Fixed a bug where some videos were no longer being blocked.

New in version 1.0:
* Reduce CPU usage in pages with lots of content updates.
* Support for adding domains with multiple parts like "stan.com.au" to the allow list. Before you could only add the end of the domain, "com.au", to the allow list, which didn't make much sense.
* Removed unused notifications permission.                    

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

Όνομα Video Blocker Video Blocker
ID kkgpdmegkhdheglikjleejknplhdpbck
Επίσημο URL https://chromewebstore.google.com/detail/video-blocker/kkgpdmegkhdheglikjleejknplhdpbck
Περιγραφή Block videos from playing.
Μέγεθος Αρχείου 1.93 MB
Αριθμός Εγκαταστάσεων 15,238
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2022-10-27
Ημερομηνία Δημοσίευσης 2020-02-06
Αξιολόγηση 3.53/5 Συνολικά 120 Αξιολογήσεις
Προγραμματιστής Ben Plowman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://twitter.com/benplowman
Διεύθυνση URL της Σελίδας Βοήθειας https://twitter.com/benplowman
Υποστηριζόμενες Γλώσσες id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Ben Plowman",
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "version": "1.2",
    "icons": {
        "128": "img\/tv.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "background.js",
                "content.js"
            ],
            "css": [
                "content_script.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/icon.png"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}