Netflix Light Mode
This is an extension that allows you to utilise Netflix in a light mode
什么是Netflix Light Mode?
Netflix Light Mode是由sensaiben开发的Chrome扩展程序,该扩展的主要功能是“This is an extension that allows you to utilise Netflix in a light mode”。
扩展截图
下载Netflix Light Mode扩展crx文件
下载Netflix Light Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Experience Netflix in light mode. If you're tired of the dark background, this extension is perfect for you! Now you can turn it off and on, and personalise your viewing experience using the picture controls.
扩展基本信息
名称 | Netflix Light Mode |
ID | nlkblacjcdilfdjmmlfemoalcbjjopgf |
官方URL | https://chromewebstore.google.com/detail/netflix-light-mode/nlkblacjcdilfdjmmlfemoalcbjjopgf |
简介 | This is an extension that allows you to utilise Netflix in a light mode |
文件大小 | 28.97 KB |
安装次数 | 1,399 |
当前版本 | 2.0.0.4 |
更新时间 | 2020-06-01 |
上架时间 | 2020-06-01 |
评分 | 3.00/5 共4次评分 |
开发者 | sensaiben |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Light Mode", "version": "2.0.0.4", "manifest_version": 2, "description": "This is an extension that allows you to utilise Netflix in a light mode", "browser_action": { "default_popup": "controlTab.html", "default_icon": "icon.png" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "scripts\/content_script.js" ] } ], "web_accessible_resources": [ "netflixLightmodeStyles.css" ] } |