YouTube Watched Filter
Filter videos you have already seen on the YouTube search results page!
Was ist YouTube Watched Filter?
YouTube Watched Filter ist eine Chrome-Erweiterung, die von MarkosApps entwickelt wurde, und ihr Hauptmerkmal ist "Filter videos you have already seen on the YouTube search results page!".
Erweiterungsscreenshots
YouTube Watched Filter-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Watched 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
Whenever a keyword is searched on YouTube, there is always a good chance that videos you have already clicked on pop up in the search results page. Would you prefer if you could easily choose to have those videos excluded from the results? YouTube Watched Filter logs the videos you clicked on from the results page so that next time you make a YouTube search, you won't have to see the same video results. You can choose whether you want this Chrome extension to filter the search page manually by pressing the filter button in the pop-up, or choose to filter them automatically specified in the options page. If you don't want the extension to log videos you click on from the results page, you can tick off enable in the pop-up. Additionally, you can also use the reversed button to do the opposite and filter out videos you haven't watched to only see those which you have watched.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ljfallanjgncbpifopcppdepechonejh |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-watched-filter/ljfallanjgncbpifopcppdepechonejh |
Beschreibung | Filter videos you have already seen on the YouTube search results page! |
Dateigröße | 233 KB |
Installationsanzahl | 508 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2022-06-16 |
Veröffentlichungsdatum | 2021-01-22 |
Bewertung | 3.33/5 Insgesamt 3 Bewertungen |
Entwickler | MarkosApps |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/markorankovic/YouTube-Watched-Filter |
URL der Datenschutzrichtlinien-Seite | https://github.com/markorankovic/YouTube-Watched-Filter/blob/main/privacy-policy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Watched Filter", "version": "1.1.1", "description": "Filter videos you have already seen on the YouTube search results page!", "permissions": [ "storage", "tabs", "https:\/\/www.youtube.com\/*" ], "background": { "scripts": [ "links.js", "background.js" ], "persistent": false }, "browser_action": { "default_popup": ".\/popup.html" }, "options_page": ".\/options.html", "icons": { "16": ".\/LogoDesign16.png", "32": ".\/LogoDesign32.png", "48": ".\/LogoDesign48.png", "128": ".\/LogoDesign128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "links.js", "foreground.js" ], "all_frames": true } ], "manifest_version": 2 } |