Netflix Shortcuts
Custom shortcuts for Netflix
什么是Netflix Shortcuts?
Netflix Shortcuts是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Custom shortcuts for Netflix”。
扩展截图
下载Netflix Shortcuts扩展crx文件
下载Netflix Shortcuts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to control Netflix using only your keyboard, no more mouse needed. It currently supports: - "Skip Intro" (hit the "s" key) - "Next Episode" (hit the "n" key). More coming soon...
扩展基本信息
名称 | |
ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
官方URL | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
简介 | Custom shortcuts for Netflix |
文件大小 | 6.79 KB |
安装次数 | 246 |
当前版本 | 1.0 |
更新时间 | 2018-10-06 |
上架时间 | 2018-10-06 |
评分 | 1.00/5 共1次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/foxou33/netflix-shortcuts |
帮助页面URL | https://github.com/foxou33/netflix-shortcuts/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Shortcuts", "version": "1.0", "manifest_version": 2, "description": "Custom shortcuts for Netflix", "icons": { "64": "img\/icon_grey.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/watch\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "img\/icon_red.png" }, "permissions": [ "declarativeContent" ] } |