TED Player Control
Shortcut to play/pause videos on TED.com using the spacebar.
什么是TED Player Control?
TED Player Control是由Matheus Pedroso开发的Chrome扩展程序,该扩展的主要功能是“Shortcut to play/pause videos on TED.com using the spacebar.”。
扩展截图
下载TED Player Control扩展crx文件
下载TED Player Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | ejkfpcfaajhhgaegdkgmdfgaookckeac |
| 官方URL | https://chromewebstore.google.com/detail/ted-player-control/ejkfpcfaajhhgaegdkgmdfgaookckeac |
| 简介 | Shortcut to play/pause videos on TED.com using the spacebar. |
| 文件大小 | 18.75 KB |
| 安装次数 | 1,000 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2017-03-21 |
| 上架时间 | 2017-03-20 |
| 评分 | 4.14/5 共7次评分 |
| 开发者 | Matheus Pedroso |
| 付费类型 | free |
| 扩展官网 | https://github.com/mathop/ted-player-control |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TED Player Control",
"description": "Shortcut to play\/pause videos on TED.com using the spacebar.",
"version": "0.1.1",
"icons": {
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"permissions": [
"http:\/\/www.ted.com\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/www.ted.com\/talks\/*",
"http:\/\/www.ted.com\/playlists\/*"
],
"js": [
"src\/contentscript.js"
]
}
],
"web_accessible_resources": [
"src\/script.js"
]
} | |