Youtube Fix Ctrl+F
Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.
什么是Youtube Fix Ctrl+F?
Youtube Fix Ctrl+F是由https://ursuscode.com开发的Chrome扩展程序,该扩展的主要功能是“Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.”。
下载Youtube Fix Ctrl+F扩展crx文件
下载Youtube Fix Ctrl+F扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.
There are no menus involved. Just install and the plugin will take care of the rest.
Tested on Windows. 扩展基本信息
| 名称 | |
| ID | kieifoemlhfnemoeeacmjpebghfbdhkd |
| 官方URL | https://chromewebstore.google.com/detail/youtube-fix-ctrl+f/kieifoemlhfnemoeeacmjpebghfbdhkd |
| 简介 | Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script. |
| 文件大小 | 17.35 KB |
| 安装次数 | 82 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2017-06-18 |
| 上架时间 | 2017-06-18 |
| 评分 | 3.33/5 共3次评分 |
| 开发者 | https://ursuscode.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/ |
| 帮助页面URL | https://ursuscode.com/chrome-extensions/youtube-fix-ctrlf/ |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube Fix Ctrl+F",
"version": "0.0.1",
"author": "Adolfo Garza (borncorp)",
"manifest_version": 2,
"description": "Stops youtube from going into fullscreen when you press Ctrl+F. Credits to Adrien Pyke for his GreaseMonkey script.",
"homepage_url": "https:\/\/ursuscode.com\/chrome-extensions\/youtube-fix-ctrlf\/",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_icon": "icons\/icon48.png"
},
"default_locale": "en",
"permissions": [
"*:\/\/www.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |