YouTube Watched Filter
Filter videos you have already seen on the YouTube search results page!
YouTube Watched Filterとは何ですか?
YouTube Watched FilterはMarkosAppsによって開発されたChromeの拡張機能で、その主な機能は「Filter videos you have already seen on the YouTube search results page!」です。
拡張機能のスクリーンショット
YouTube Watched Filter拡張機能のCRXファイルをダウンロード
YouTube Watched Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | ljfallanjgncbpifopcppdepechonejh |
公式URL | https://chromewebstore.google.com/detail/youtube-watched-filter/ljfallanjgncbpifopcppdepechonejh |
説明 | Filter videos you have already seen on the YouTube search results page! |
ファイルサイズ | 233 KB |
インストール数 | 508 |
現在のバージョン | 1.1.1 |
最終更新日 | 2022-06-16 |
公開日 | 2021-01-22 |
評価 | 3.33/5 合計 3 レビュー |
開発者 | MarkosApps |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/markorankovic/YouTube-Watched-Filter |
プライバシーポリシーページのURL | https://github.com/markorankovic/YouTube-Watched-Filter/blob/main/privacy-policy |
対応言語 | 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 } |