Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
What is Youtube Hider?
Youtube Hider is a Chrome extension developed by Miri Ahn, and its main feature is "This is a Chrome extension to hide videos and images on YouTube.".
Extension Screenshots
Download Youtube Hider Extension CRX File
Download Youtube Hider 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
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.
Extension Basic Information
Name | |
ID | cnaimccmiafebfliaiefkdfmdffgmjph |
Official URL | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
Description | This is a Chrome extension to hide videos and images on YouTube. |
File Size | 8.85 KB |
Installation Count | 60 |
Current Version | 1.1 |
Last Updated | 2019-11-29 |
Publish Date | 2019-11-29 |
Rating | 4.25/5 Total 4 Ratings |
Developer | Miri Ahn |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/kameru/youtube-hider/issues |
Supported Languages | 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 } |