AdvancedSearch for YouTube
Adds more filters to the Search.
什么是AdvancedSearch for YouTube?
AdvancedSearch for YouTube是由t_nb开发的Chrome扩展程序,该扩展的主要功能是“Adds more filters to the Search.”。
扩展截图
下载AdvancedSearch for YouTube扩展crx文件
下载AdvancedSearch for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
AdvancedSearch adds a few more options to the "Filters" menu when searching on YouTube. For example, you can filter videos by exact length, by their upload date, by how many views they have. And more. As of now, AdvancedSearch adds 20 new filters. Take a look at screenshots to see them all and an example use case. Source code: https://github.com/ftde0/yt-advancedSearch
扩展基本信息
名称 | AdvancedSearch for YouTube |
ID | khbccecgpppakomjmdningcbjicdjpak |
官方URL | https://chromewebstore.google.com/detail/advancedsearch-for-youtub/khbccecgpppakomjmdningcbjicdjpak |
简介 | Adds more filters to the Search. |
文件大小 | 34.46 KB |
安装次数 | 4,110 |
当前版本 | 1.4.1 |
更新时间 | 2022-10-05 |
上架时间 | 2022-05-12 |
评分 | 3.18/5 共39次评分 |
开发者 | t_nb |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AdvancedSearch for YouTube", "version": "1.4.1", "description": "Adds more filters to the Search.", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/video_tools\/sapisidhash.js", ".\/video_tools\/current_cfg_data.js", ".\/video_tools\/video_request.js", ".\/experimental_filters\/main.js", ".\/experimental_filters\/matching_keywords.js", ".\/experimental_filters\/upload_date.js", ".\/experimental_filters\/age_restricted.js", ".\/experimental_filters\/view_count.js", ".\/experimental_filters\/subscriber_count.js", ".\/experimental_filters\/subscriber_sort.js", ".\/utilities.js", ".\/workaround_css_add.js", ".\/filters.js" ], "css": [ ".\/as_style.css" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "icons": { "128": ".\/icon.png" } } |