Disable YouTube Cards

Disable end cards that show during the last 5-20 seconds of a video.

Τι είναι το Disable YouTube Cards;

Το Disable YouTube Cards είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Techniat, και η κύρια λειτουργία του είναι "Disable end cards that show during the last 5-20 seconds of a video.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Disable YouTube Cards

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

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

                        Block all cards that blocking some content!

Also you can Block:

✓ End Cards are a part of the video that show during the last 5-20 seconds of a video.

✓ Cards a small rectangular box, or teaser, appear in the top right corner of the video.

✓ Channel Icon is a part of the video that show during the start of a video.                    

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

Όνομα Disable YouTube Cards Disable YouTube Cards
ID cabbicmkgndkkhcfpelkfdahnfgefefn
Επίσημο URL https://chrome.google.com/webstore/detail/disable-youtube-cards/cabbicmkgndkkhcfpelkfdahnfgefefn
Περιγραφή Disable end cards that show during the last 5-20 seconds of a video.
Μέγεθος Αρχείου 35.58 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2017-12-14
Ημερομηνία Δημοσίευσης 2017-12-14
Αξιολόγηση 5.00/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής Techniat
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable YouTube Cards",
    "description": "Disable end cards that show during the last 5-20 seconds of a video.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_popup": "browser_action\/popup.html"
    },
    "manifest_version": 2
}