Youtube Grid Search Result
Making youtube grid search results
什么是Youtube Grid Search Result?
Youtube Grid Search Result是由gobrisebane开发的Chrome扩展程序,该扩展的主要功能是“Making youtube grid search results”。
扩展截图
下载Youtube Grid Search Result扩展crx文件
下载Youtube Grid Search Result扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Change youtube list result to grid layout!
유튜브 검색결과를 그리드형식으로 바꿔줍니다.
Support page :
1. Search result pages
2. Trending pages 扩展基本信息
| 名称 | |
| ID | ccpnjmgefellgnojhcfafbebmhodndbf |
| 官方URL | https://chromewebstore.google.com/detail/youtube-grid-search-resul/ccpnjmgefellgnojhcfafbebmhodndbf |
| 简介 | Making youtube grid search results |
| 文件大小 | 39.85 KB |
| 安装次数 | 285 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2020-10-28 |
| 上架时间 | 2020-10-17 |
| 评分 | 4.56/5 共9次评分 |
| 开发者 | gobrisebane |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://www.twepo.com |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Grid Search Result",
"manifest_version": 2,
"description": "Making youtube grid search results",
"version": "0.1.1",
"browser_action": {
"default_icon": "icon16.png"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"js": [
"jquery.js",
"content.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"css\/*.css"
],
"background": {
"scripts": [
"background.js"
],
"style": [
"styles.css"
]
}
} | |