Pause HBO
A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.
什么是Pause HBO?
Pause HBO是由http://helloleia.com开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.”。
扩展截图
下载Pause HBO扩展crx文件
下载Pause HBO扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This app is really simple. It enables the pause and play toggle with the spacebar in the HBO app!
HBO makes awesome shows. But the HBO web app has a tiny, yet frustrating detail that drives me nuts. You cannot pause
or play with the spacebar. To make matters worse, hitting the spacebar exits full-screen mode. So, when you intuitively hit the spacebar to pause your show, you have to then click to pause and re-enter full-screen and it's a nightmare. 扩展基本信息
| 名称 | |
| ID | obkkopdjeglmehankcafionjnhdffjgd |
| 官方URL | https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd |
| 简介 | A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain. |
| 文件大小 | 119 KB |
| 安装次数 | 44 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2020-01-23 |
| 上架时间 | 2020-01-19 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | http://helloleia.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://helloleia.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Pause HBO",
"description": "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"page_action": {
"default_icon": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"default_title": "HBO Tweak"
},
"permissions": [
"*:\/\/es.hboespana.com\/*",
"*:\/\/*.hbo.com\/*",
"*:\/\/*.hbogo.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/es.hboespana.com\/*",
"*:\/\/*.hbo.com\/*",
"*:\/\/*.hbogo.com\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
}
} | |