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