Netflix TV
Turns Netflix into TV mode.
什麼是Netflix TV?
Netflix TV是由Genius and Sons開發的Chrome擴展程式,該擴展的主要功能是“Turns Netflix into TV mode.”。
擴展截圖
下載Netflix TV擴展crx文件
下載Netflix TV擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Turning Netflix into TV mode is easy! All you have to do is pick series or movies, the genre you'd like and press play! The extension will automagically start playing personalized content for you that matches your search. If you would like to have more granular controls you can create a TV show channel. You get to add all your favorite TV shows, and the extension will start playing a mixed playlist of episodes. Stop wasting time deciding what to watch, and spend more time watching Guide: 1. Visit netflix.com 2. Open the extension from top right corner 3. Create your own customized channel Credits: This extension is not affiliated with Netflix Inc. Netflix is a trademark of Netflix, Inc. Photo credits: Roberto Nickson Support email: [email protected]
擴展基本資訊
名稱 | |
ID | odmgfcepaajjipjjjhijpkhacagdjddo |
官方網址 | https://chrome.google.com/webstore/detail/netflix-tv/odmgfcepaajjipjjjhijpkhacagdjddo |
簡介 | Turns Netflix into TV mode. |
檔案大小 | 1.36 MB |
安裝次數 | 970 |
目前版本 | 1.0.1 |
更新時間 | 2020-04-03 |
上架時間 | 2020-04-03 |
評分 | 1.50/5 共 2 次評分 |
開發者 | Genius and Sons |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix TV", "description": "Turns Netflix into TV mode.", "version": "1.0.1", "icons": { "128": "icon-128.png", "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png" }, "background": { "persistent": false, "matches": [ "*:\/\/*.netflix.com\/*" ], "scripts": [ "js\/common.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "js\/common.js", "js\/content.js" ] } ], "permissions": [ "tabs", "storage", "*:\/\/*.netflix.com\/*", "*:\/\/*.thisisanalphanumeric.xyz\/*" ], "browser_action": { "default_popup": "popup.html", "default_title": "Netflix TV Settings" } } |