Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Apa itu Youtube Hider?

Youtube Hider adalah ekstensi Chrome yang dikembangkan oleh Miri Ahn, dan fitur utamanya adalah "This is a Chrome extension to hide videos and images on YouTube.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Youtube Hider

Unduh file ekstensi Youtube 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

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

Informasi Dasar Ekstensi

Nama Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
URL Resmi https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
Deskripsi This is a Chrome extension to hide videos and images on YouTube.
Ukuran File 8.85 KB
Jumlah Instalasi 60
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-11-29
Tanggal Publikasi 2019-11-29
Penilaian 4.25/5 Total 4 Penilaian
Pengembang Miri Ahn
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/kameru/youtube-hider/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}