Youtube Customiser

Add and remove Youtube content panels as you wish.

什麼是Youtube Customiser?

Youtube Customiser是由Erlend Eelmets開發的Chrome擴展程式,該擴展的主要功能是“Add and remove Youtube content panels as you wish.”。

擴展截圖

screenshot

下載Youtube Customiser擴展crx文件

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

擴展使用說明

                        Add and remove Youtube content panels as you wish. Does the merchandise bar annoy you? Remove it? Do you want to stop spending time on youtube rabbit holes? Disable video suggestions. Do you judge a video too much based on it's numbers? Disable the numbers.                    

擴展基本資訊

名稱 Youtube Customiser Youtube Customiser
ID jlcpaifegmmdaiafenaeajnkbclgikhp
官方網址 https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp
簡介 Add and remove Youtube content panels as you wish.
檔案大小 752 KB
安裝次數 12
目前版本 0.0.2
更新時間 2020-11-11
上架時間 2020-11-11
開發者 Erlend Eelmets
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.2",
    "short_name": "Youtube Custom",
    "name": "Youtube Customiser",
    "description": "Add and remove Youtube content panels as you wish.",
    "browser_action": {
        "default_title": "Youtube Customiser",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "22": "img\/icon-22.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}