YouTube Video Hider

Hide youtube videos and thumbnails

YouTube Video Hiderとは何ですか?

YouTube Video HiderはDiogo Peresによって開発されたChromeの拡張機能で、その主な機能は「Hide youtube videos and thumbnails」です。

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

screenshot

YouTube Video Hider拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Increase your productivity and don't get distracted by youtube videos while listening to music.
This app has multiple options:
* Turn all videos and thumbnails to black;
* Minimize main video to show only the timeline. Minimize all the thumbnail's and zoom on hover.
* Invert the color of all videos and thumbnails.

This app is open-source and all the code is on: https://github.com/diogoperes/youtube-video-hider-app                    

拡張機能の基本情報

名前 YouTube Video Hider YouTube Video Hider
ID bppihnfgnlpklmhaojomngahgfpmpnbi
公式URL https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi
説明 Hide youtube videos and thumbnails
ファイルサイズ 41.22 KB
インストール数 123
現在のバージョン 0.0.0.4
最終更新日 2019-11-30
公開日 2019-11-30
評価 4.78/5 合計 9 レビュー
開発者 Diogo Peres
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.mrperes.com/youtube-video-hider/
ヘルプページのURL http://www.mrperes.com/youtube-video-hider/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Video Hider",
    "version": "0.0.0.4",
    "description": "Hide youtube videos and thumbnails",
    "browser_action": {
        "default_icon": ".\/img\/eye.png",
        "default_popup": ".\/popup.html"
    },
    "web_accessible_resources": [
        "css\/hide.css",
        "css\/minimize.css",
        "css\/invert.css"
    ],
    "author": "Diogo Peres",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                ".\/js\/contentscript.js",
                ".\/js\/hideVideoScript.js",
                ".\/js\/showVideoScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": true
    }
}