Hide YouTube™ Video

Hide YouTube video

What is Hide YouTube™ Video?

Hide YouTube™ Video is a Chrome extension developed by Cettoana, and its main feature is "Hide YouTube video".

Extension Screenshots

screenshot
screenshot

Download Hide YouTube™ Video Extension CRX File

Download Hide YouTube™ Video extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # Feature

- Hide Youtube video, listen to music without showing video
- Hide all recommended video's thumbnails

----------------------------------------

If you have any problems or suggestions, welcome to create an issue in the github repository: https://github.com/cettoana/hide-youtube-video                    

Extension Basic Information

Name Hide YouTube™ Video Hide YouTube™ Video
ID lminokaobchppnocfchcjcenlmodehmi
Official URL https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi
Description Hide YouTube video
File Size 11.63 KB
Installation Count 73
Current Version 0.1.1
Last Updated 2019-01-03
Publish Date 2019-01-03
Rating 5.00/5 Total 2 Ratings
Developer Cettoana
Email [email protected]
Payment Type free
Extension Website https://github.com/cettoana/hide-youtube-video
Help Page URL https://github.com/cettoana/hide-youtube-video
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide YouTube\u2122 Video",
    "version": "0.1.1",
    "description": "Hide YouTube video",
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "declarativeContent",
        "tabs",
        "activeTab",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/image_16.png",
            "32": "images\/image_32.png",
            "48": "images\/image_48.png",
            "128": "images\/image_128.png"
        }
    },
    "icons": {
        "16": "images\/image_16.png",
        "32": "images\/image_32.png",
        "48": "images\/image_48.png",
        "128": "images\/image_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "dist\/insertCSS.js",
                "dist\/removeCSS.js"
            ],
            "css": [
                "styles\/default.css"
            ],
            "run_at": "document_start"
        }
    ]
}