Hide YouTube™ Video

Hide YouTube video

Wat is Hide YouTube™ Video?

Hide YouTube™ Video is een Chrome-extensie ontwikkeld door Cettoana, en de belangrijkste functie is "Hide YouTube video".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Hide YouTube™ Video

Download Hide YouTube™ Video-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        # 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                    

Basisinformatie over de Extensie

Naam Hide YouTube™ Video Hide YouTube™ Video
ID lminokaobchppnocfchcjcenlmodehmi
Officiële URL https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi
Beschrijving Hide YouTube video
Bestandsgrootte 11.63 KB
Aantal Installaties 73
Huidige Versie 0.1.1
Laatst Bijgewerkt 2019-01-03
Publicatiedatum 2019-01-03
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Cettoana
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/cettoana/hide-youtube-video
Help Pagina-URL https://github.com/cettoana/hide-youtube-video
Ondersteunde Talen 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"
        }
    ]
}