YouTube Video Hider

Hide youtube videos and thumbnails

Apa itu YouTube Video Hider?

YouTube Video Hider adalah ekstensi Chrome yang dikembangkan oleh Diogo Peres, dan fitur utamanya adalah "Hide youtube videos and thumbnails".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Video Hider

Unduh file ekstensi YouTube Video Hider dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama YouTube Video Hider YouTube Video Hider
ID bppihnfgnlpklmhaojomngahgfpmpnbi
URL Resmi https://chrome.google.com/webstore/detail/youtube-video-hider/bppihnfgnlpklmhaojomngahgfpmpnbi
Deskripsi Hide youtube videos and thumbnails
Ukuran File 41.22 KB
Jumlah Instalasi 123
Versi Saat Ini 0.0.0.4
Terakhir Diperbarui 2019-11-30
Tanggal Publikasi 2019-11-30
Penilaian 4.78/5 Total 9 Penilaian
Pengembang Diogo Peres
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.mrperes.com/youtube-video-hider/
URL Halaman Bantuan http://www.mrperes.com/youtube-video-hider/
Bahasa yang Didukung 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
    }
}