Netflix Shortcuts
Custom shortcuts for Netflix
What is Netflix Shortcuts?
Netflix Shortcuts is a Chrome extension developed by Unknown, and its main feature is "Custom shortcuts for Netflix".
Extension Screenshots
Download Netflix Shortcuts Extension CRX File
Download Netflix Shortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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...
Extension Basic Information
Name | |
ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
Official URL | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
Description | Custom shortcuts for Netflix |
File Size | 6.79 KB |
Installation Count | 246 |
Current Version | 1.0 |
Last Updated | 2018-10-06 |
Publish Date | 2018-10-06 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/foxou33/netflix-shortcuts |
Help Page URL | https://github.com/foxou33/netflix-shortcuts/issues |
Supported Languages | 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" ] } |