YTPP
YTPP: YouTube Play/Pause without switching tabs
什么是YTPP?
YTPP是由spidergears开发的Chrome扩展程序,该扩展的主要功能是“YTPP: YouTube Play/Pause without switching tabs”。
扩展截图
下载YTPP扩展crx文件
下载YTPP扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
YTPP: YouTube Play/Pause Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.
扩展基本信息
名称 | YTPP |
ID | onlhipebedljinheklgalifgbolcmndi |
官方URL | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi |
简介 | YTPP: YouTube Play/Pause without switching tabs |
文件大小 | 10.16 KB |
安装次数 | 23 |
当前版本 | 0.1 |
更新时间 | 2016-11-20 |
上架时间 | 2016-11-20 |
评分 | 3.00/5 共2次评分 |
开发者 | spidergears |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPP", "short_name": "YTPP", "version": "0.1", "description": "YTPP: YouTube Play\/Pause without switching tabs", "icons": { "128": "icon.png", "48": "icon_48.png", "16": "icon_16.png" }, "author": { "name": "spidergears", "twitter_handle": "spider_gears", "github": "http:\/\/github.com\/spidergears" }, "browser_action": { "default_icon": "icon.png", "default_title": "YTPP" }, "permissions": [ "tabs" ], "background": { "scripts": [ "ytpp_background_script.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "ytpp_content_script.js" ] } ] } |