YouTubePlayer
Control YouTube videos across all tabs and windows from extension bar
什么是YouTubePlayer?
YouTubePlayer是由Akshaya Kumar开发的Chrome扩展程序,该扩展的主要功能是“Control YouTube videos across all tabs and windows from extension bar”。
扩展截图
下载YouTubePlayer扩展crx文件
下载YouTubePlayer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.
扩展基本信息
名称 | YouTubePlayer |
ID | djfdkfcebbbehfmibkkhneofknamohoi |
官方URL | https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi |
简介 | Control YouTube videos across all tabs and windows from extension bar |
文件大小 | 100 KB |
安装次数 | 31 |
当前版本 | 1.0.0 |
更新时间 | 2019-08-04 |
上架时间 | 2019-08-03 |
开发者 | Akshaya Kumar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubePlayer", "version": "1.0.0", "description": "Control YouTube videos across all tabs and windows from extension bar", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |