YouFocus - YouTube Filter
A filter for YouTube videos.
Was ist YouFocus - YouTube Filter?
YouFocus - YouTube Filter ist eine Chrome-Erweiterung, die von Practimake entwickelt wurde, und ihr Hauptmerkmal ist "A filter for YouTube videos.".
Erweiterungsscreenshots
YouFocus - YouTube Filter-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouFocus - YouTube Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.
Grundlegende Informationen zur Erweiterung
Name | YouFocus - YouTube Filter |
ID | nlokjknlncdcjohkpclkbeofefnmjaad |
Offizielle URL | https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad |
Beschreibung | A filter for YouTube videos. |
Dateigröße | 729 KB |
Installationsanzahl | 230 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2020-07-17 |
Veröffentlichungsdatum | 2020-07-15 |
Bewertung | 4.80/5 Insgesamt 5 Bewertungen |
Entwickler | Practimake |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouFocus - YouTube Filter", "description": "A filter for YouTube videos.", "version": "1.0.1", "icons": { "128": "funnelV2.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "utils.js", "content.js" ] } ], "background": { "scripts": [ "utils.js", "background.js" ] }, "page_action": { "default_icon": "funnelV2.png" }, "options_page": "options.html", "permissions": [ "storage", "declarativeContent" ] } |