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
公式URL 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
Eメール [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';"
}