Youtube focus

Blocks Youtube recommendations so that you see only what you search.

Youtube focusとは何ですか?

Youtube focusはPriyanshu Nayanによって開発されたChromeの拡張機能で、その主な機能は「Blocks Youtube recommendations so that you see only what you search.」です。

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

screenshot

Youtube focus拡張機能のCRXファイルをダウンロード

Youtube focus拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.                    

拡張機能の基本情報

名前 Youtube focus Youtube focus
ID elnjcclakbcdhbljljckfokbpmcicemo
公式URL https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo
説明 Blocks Youtube recommendations so that you see only what you search.
ファイルサイズ 10.62 KB
インストール数 40
現在のバージョン 1.0.1
最終更新日 2020-04-08
公開日 2020-04-08
評価 4.00/5 合計 4 レビュー
開発者 Priyanshu Nayan
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/priyanshunayan/youtube-focus
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube focus",
    "version": "1.0.1",
    "description": "Blocks Youtube recommendations so that you see only what you search.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "permissions": [
            "storage",
            "tabs",
            "declarativeContent"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/",
                "*:\/\/youtube.com\/",
                "*:\/\/youtube.com\/watch*",
                "*:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "default_icon": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}