YouTube Subscriptions Filter
Filter your subscriptions in YouTube sidebar.
What is YouTube Subscriptions Filter?
YouTube Subscriptions Filter is a Chrome extension developed by boykodev, and its main feature is "Filter your subscriptions in YouTube sidebar.".
Extension Screenshots
Download YouTube Subscriptions Filter Extension CRX File
Download YouTube Subscriptions Filter 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
This extension adds a filter input in YouTube™ sidebar.
Extension Basic Information
Name | |
ID | mljeimfhlmkmdjdkipflelpmkkcccoga |
Official URL | https://chrome.google.com/webstore/detail/youtube-subscriptions-fil/mljeimfhlmkmdjdkipflelpmkkcccoga |
Description | Filter your subscriptions in YouTube sidebar. |
File Size | 38.81 KB |
Installation Count | 68 |
Current Version | 1.0 |
Last Updated | 2017-06-08 |
Publish Date | 2017-06-08 |
Rating | 2.00/5 Total 1 Ratings |
Developer | boykodev |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Subscriptions Filter", "short_name": "YT Subs Filter", "version": "1.0", "description": "Filter your subscriptions in YouTube sidebar.", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "page_action": { "default_icon": "icon16.png", "default_popup": "popup.html", "default_title": "Subscriptions filter for YouTube" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/jquery.min.js", "js\/content.js" ], "css": [ "css\/style.css" ] } ], "permissions": [ "https:\/\/www.youtube.com\/*" ] } |