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
电子邮箱 [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
}