Netflix Navigator
Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
什么是Netflix Navigator?
Netflix Navigator是由dutiyesh开发的Chrome扩展程序,该扩展的主要功能是“Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.”。
扩展截图
下载Netflix Navigator扩展crx文件
下载Netflix Navigator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Netflix Navigator is a chrome extension for Netflix to make browsing experience easy with keyboard. Features: ★ Navigate with Arrow keys ★ Get more information with Enter key ★ Autoplays Preview after 1 second ★ Search Netflix with S key
扩展基本信息
名称 | Netflix Navigator |
ID | kiikkoajobekfkpgaojoincnfombbaco |
官方URL | https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco |
简介 | Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys. |
文件大小 | 37.95 KB |
安装次数 | 216 |
当前版本 | 0.3.0 |
更新时间 | 2022-12-04 |
上架时间 | 2020-11-08 |
评分 | 5.00/5 共5次评分 |
开发者 | dutiyesh |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.netflixnavigator.com/ |
隐私政策页面URL | https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Netflix Navigator", "version": "0.3.0", "description": "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Netflix Navigator", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ], "css": [ "contentScript.css" ] } ] } |