YouTube Auto-Proceed to Video
Automatically skip YouTube's "This video may be inappropriate for some users" check
什么是YouTube Auto-Proceed to Video?
YouTube Auto-Proceed to Video是由ba32107开发的Chrome扩展程序,该扩展的主要功能是“Automatically skip YouTube's "This video may be inappropriate for some users" check”。
扩展截图
下载YouTube Auto-Proceed to Video扩展crx文件
下载YouTube Auto-Proceed to Video扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | lmjcoecpdenpmdoieiiendpoohgmabmd |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-auto-proceed-to-v/lmjcoecpdenpmdoieiiendpoohgmabmd |
| 简介 | Automatically skip YouTube's "This video may be inappropriate for some users" check |
| 文件大小 | 45.05 KB |
| 安装次数 | 1,453 |
| 当前版本 | 1.6.1 |
| 更新时间 | 2022-07-21 |
| 上架时间 | 2020-02-23 |
| 评分 | 4.00/5 共8次评分 |
| 开发者 | ba32107 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/ba32107/youtube-auto-proceed |
| 帮助页面URL | https://github.com/ba32107/youtube-auto-proceed |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Auto-Proceed to Video",
"short_name": "YouTubeAutoProceed",
"version": "1.6.1",
"description": "Automatically skip YouTube's \"This video may be inappropriate for some users\" check",
"manifest_version": 2,
"permissions": [
"contextMenus",
"tabs"
],
"background": {
"page": "background.html",
"persistent": false
},
"browser_action": {
"default_title": "YouTube Auto-Proceed to Video",
"default_icon": {
"16": "images\/icons\/16.png",
"32": "images\/icons\/32.png",
"48": "images\/icons\/48.png",
"128": "images\/icons\/128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"libs\/browser-polyfill.min.js",
"contentScript.js"
]
}
],
"icons": {
"16": "images\/icons\/16.png",
"32": "images\/icons\/32.png",
"48": "images\/icons\/48.png",
"128": "images\/icons\/128.png"
}
} | |