YouTube Subscriptions Filter
Filter your subscriptions in YouTube sidebar.
Wat is YouTube Subscriptions Filter?
YouTube Subscriptions Filter is een Chrome-extensie ontwikkeld door boykodev, en de belangrijkste functie is "Filter your subscriptions in YouTube sidebar.".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Subscriptions Filter
Download YouTube Subscriptions Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension adds a filter input in YouTube™ sidebar.
Basisinformatie over de Extensie
Naam | |
ID | mljeimfhlmkmdjdkipflelpmkkcccoga |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-subscriptions-fil/mljeimfhlmkmdjdkipflelpmkkcccoga |
Beschrijving | Filter your subscriptions in YouTube sidebar. |
Bestandsgrootte | 38.81 KB |
Aantal Installaties | 68 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-06-08 |
Publicatiedatum | 2017-06-08 |
Beoordeling | 2.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | boykodev |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |