Disable YouTube Cards

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

Disable YouTube Cardsとは何ですか?

Disable YouTube CardsはTechniatによって開発されたChromeの拡張機能で、その主な機能は「Disable end cards that show during the last 5-20 seconds of a video.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Disable YouTube Cards拡張機能のCRXファイルをダウンロード

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
Eメール [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
}