Youtube™ Controller
Control Youtube™ videos from any web page
什么是Youtube™ Controller?
Youtube™ Controller是由https://www.maroun-baydoun.com开发的Chrome扩展程序,该扩展的主要功能是“Control Youtube™ videos from any web page”。
扩展截图
下载Youtube™ Controller扩展crx文件
下载Youtube™ Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Play and pause Youtube™ videos from any other web page or even when Chrome is in the background. Up to two shortcuts can be set to control video playback. To set shortcuts for this extension, navigate to chrome://extensions/shortcuts
扩展基本信息
名称 | Youtube™ Controller |
ID | poalplpedjpddipkghmlhkmgbcnmecop |
官方URL | https://chromewebstore.google.com/detail/youtube-controller/poalplpedjpddipkghmlhkmgbcnmecop |
简介 | Control Youtube™ videos from any web page |
文件大小 | 33.73 KB |
安装次数 | 2,231 |
当前版本 | 2.1.0 |
更新时间 | 2021-07-25 |
上架时间 | 2019-12-12 |
评分 | 4.75/5 共51次评分 |
开发者 | https://www.maroun-baydoun.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/maroun-baydoun/youtube-controller-extension |
帮助页面URL | https://github.com/maroun-baydoun/youtube-controller-extension/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "author": "Maroun Baydoun", "version": "2.1.0", "browser_action": { "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "icons": { "32": "icon-small.png", "64": "icon-medium.png", "128": "icon-large.png", "256": "icon.png" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "commands": { "toggle-video-1": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "Toggle first video", "global": true }, "toggle-video-2": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "Toggle second video", "global": true } } } |