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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |