Disable YouTube Cards

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

Qu'est-ce que Disable YouTube Cards ?

Disable YouTube Cards est une extension Chrome développée par Techniat, et sa fonction principale est "Disable end cards that show during the last 5-20 seconds of a video.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Disable YouTube Cards

Téléchargez les fichiers d'extension Disable YouTube Cards au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Disable YouTube Cards Disable YouTube Cards
ID cabbicmkgndkkhcfpelkfdahnfgefefn
URL Officiel https://chrome.google.com/webstore/detail/disable-youtube-cards/cabbicmkgndkkhcfpelkfdahnfgefefn
Description Disable end cards that show during the last 5-20 seconds of a video.
Taille du Fichier 35.58 KB
Nombre d'Installations 1,000
Version Actuelle 1.0
Dernière Mise à Jour 2017-12-14
Date de Publication 2017-12-14
Évaluation 5.00/5 Total 16 Évaluations
Développeur Techniat
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}