YouHide
Hides viewed videos on Youtube's subscriptions page
What is YouHide?
YouHide is a Chrome extension developed by Maxime Cousinou, and its main feature is "Hides viewed videos on Youtube's subscriptions page".
Extension Screenshots
Download YouHide Extension CRX File
Download YouHide 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
Automatically hides viewed and partially viewed items and shorts. Alternate between hidden, quasi-transparent and original display.
Extension Basic Information
Name | YouHide |
ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
Official URL | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
Description | Hides viewed videos on Youtube's subscriptions page |
File Size | 10.28 KB |
Installation Count | 336 |
Current Version | 2.0.2 |
Last Updated | 2024-01-13 |
Publish Date | 2017-09-08 |
Rating | 3.88/5 Total 17 Ratings |
Developer | Maxime Cousinou |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouHide", "description": "Hides viewed videos on Youtube's subscriptions page", "version": "2.0.2", "icons": { "128": "icon.png" }, "action": { "default_icon": { "16": "icon-hidden.png", "38": "[email protected]" }, "default_title": "Toggle" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "injected.js" ], "css": [ "injected.css" ] } ] } |