Lucky Flix
Adds a Get Lucky button to Netflix.com, which plays a random film
什么是Lucky Flix?
Lucky Flix是由Tom Pierce开发的Chrome扩展程序,该扩展的主要功能是“Adds a Get Lucky button to Netflix.com, which plays a random film”。
扩展截图
下载Lucky Flix扩展crx文件
下载Lucky Flix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Eliminate the endless discussions about which film to watch! This extension adds a button to your Netflix which will play a random film from the selection listed on your home page. Remember to rate the films after you've watched them, as this will improve your chances of getting a great random pick next time!
扩展基本信息
名称 | Lucky Flix |
ID | ohkaikelnphbioolgljkkeikpdhhijga |
官方URL | https://chromewebstore.google.com/detail/lucky-flix/ohkaikelnphbioolgljkkeikpdhhijga |
简介 | Adds a Get Lucky button to Netflix.com, which plays a random film |
文件大小 | 56.16 KB |
安装次数 | 47 |
当前版本 | 0.0.2 |
更新时间 | 2015-01-27 |
上架时间 | 2015-01-27 |
评分 | 5.00/5 共1次评分 |
开发者 | Tom Pierce |
付费类型 | free |
扩展官网 | https://github.com/tompierce/lucky-flix |
帮助页面URL | https://github.com/tompierce/lucky-flix/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lucky Flix", "version": "0.0.2", "description": "Adds a Get Lucky button to Netflix.com, which plays a random film", "icons": { "32": "icon32.png", "64": "icon64.png", "110": "icon110.png" }, "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/WiHome" ], "js": [ "contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "script.js", "jquery-1.11.1.min.js", "jquery.popupoverlay.js" ] } |