netflixQ
Add queue functionality to Netflix for non-US users.
netflixQ란 무엇입니까?
netflixQ은(는) https://mitchell.amihod.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add queue functionality to Netflix for non-US users."입니다.
확장 프로그램 스크린샷
netflixQ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
(NOTE: Netflix now offers lists in all markets, so you probably don't need this anymore) Chrome Extension to build a list of Netflix movies to watch. For the rest of the world that doesn't have Netflix Queue access. **Features** * Adds a NetflixQ button. Click that, and it will add to your list. * Click on the Red Star icon in your toolbar, and you will see your list of movies you want to watch. Why? ---- Just subscribed to netflix.ca, and was browsing the movies. I couldn't find a 'digital' queue for what I wanted to watch later. Seems like an obvious feature for them to have built in, so wonder if I'm missing something obvious? In any case, I suppose I could just bookmark the movies, but I wanted to make a chrome extension. This seemed like a simple enough use case. Who? ---- If you have any issues or problems to report, best way is through the github repo dedicated to this extension: http://github.com/meeech/netflixq Feedback welcome through github, or via twitter: @meeech I use some icons from Circular Icons - http://prothemedesign.com/circular-icons/ In case this isn't obvious, I and this extension have no relation to Netflix.
확장 프로그램 기본 정보
이름 | netflixQ |
ID | fjbfidbblfnfbgniilajdlnfdoefbabj |
공식 URL | https://chromewebstore.google.com/detail/netflixq/fjbfidbblfnfbgniilajdlnfdoefbabj |
설명 | Add queue functionality to Netflix for non-US users. |
파일 크기 | 54.62 KB |
설치 횟수 | 426 |
현재 버전 | 1.1.3 |
최근 업데이트 | 2015-10-28 |
출시 날짜 | 2015-10-28 |
평점 | 3.65/5 총 20 개의 평점 |
개발자 | https://mitchell.amihod.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/meeech/netflixq |
도움말 페이지 URL | http://github.com/meeech/netflixq |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "netflixQ", "version": "1.1.3", "description": "Add queue functionality to Netflix for non-US users.", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "star_red.png", "default_popup": "netflixq.html" }, "content_scripts": [ { "matches": [ "http:\/\/movies.netflix.com\/*" ], "js": [ "simpleyui-min.js", "pagescript.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |