Youtube Untrend
This extension simply removes the 'Trending' tab on the Youtube home page.
什么是Youtube Untrend?
Youtube Untrend是由dorian.grolaux开发的Chrome扩展程序,该扩展的主要功能是“This extension simply removes the 'Trending' tab on the Youtube home page.”。
扩展截图
下载Youtube Untrend扩展crx文件
下载Youtube Untrend扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Don't like this trending tab ? I don't either. 扩展基本信息
| 名称 | |
| ID | eopimnkjhiiigfakbhiehpiacdiolcpc |
| 官方URL | https://chrome.google.com/webstore/detail/eopimnkjhiiigfakbhiehpiacdiolcpc |
| 简介 | This extension simply removes the 'Trending' tab on the Youtube home page. |
| 文件大小 | 29.2 KB |
| 安装次数 | 21 |
| 当前版本 | 0.2 |
| 更新时间 | 2016-01-10 |
| 上架时间 | 2016-01-10 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | dorian.grolaux |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Youtube Untrend",
"short_name": "Removes the 'Trending' tab on Youtube's home page",
"version": "0.2",
"description": "This extension simply removes the 'Trending' tab on the Youtube home page.",
"permissions": [
"activeTab",
"*:\/\/www.youtube.com\/"
],
"icons": {
"16": "icons\/yt_untrend16.png",
"48": "icons\/yt_untrend48.png",
"128": "icons\/yt_untrend128.png"
},
"offline_enabled": true,
"page_action": {
"default_icon": {
"16": "icons\/yt_untrend16.png",
"48": "icons\/yt_untrend48.png"
},
"default_title": "Youtube Untrend"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/",
"*:\/\/www.youtube.com\/feed\/*"
],
"js": [
"script.js"
]
}
]
} | |