Video Blocker

Video Blocker

什麼是Video Blocker?

Video Blocker是由Ran Leonard開發的Chrome擴展程式,該擴展的主要功能是“Video Blocker”。

擴展截圖

screenshot

下載Video Blocker擴展crx文件

下載Video Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Video Blocker allows you to hide videos from channels that you want to prevent your kids or yourself from watching. You can specify these channels by going to one of their videos, clicking the extension at top right of the Chrome browser, and clicking the 'block' button.

If you find any bugs or have any other problems with this extension, please notify me via the support option on the details-tab on this page. It is very difficult to help you out if you report a problem via the comments, since there is no way for me to respond to you.

Good luck and happy video blocking!                    

擴展基本資訊

名稱 Video Blocker Video Blocker
ID hficoaacnnfallmajhbmkakebpfllpbi
官方網址 https://chrome.google.com/webstore/detail/video-blocker/hficoaacnnfallmajhbmkakebpfllpbi
簡介 Video Blocker
檔案大小 161 KB
安裝次數 3,000
目前版本 1.0.4
更新時間 2017-10-26
上架時間 2017-10-26
評分 2.04/5 共 23 次評分
開發者 Ran Leonard
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Blocker",
    "description": "Video Blocker",
    "version": "1.0.4",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "title": "test"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-2.0.3.min.js",
                "js\/analytics.js",
                "js\/custom_content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery-2.0.3.min.js",
            "js\/analytics.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}