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 |
官方網址 | 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" ] } } |