Film Stack
A film queue for Netflix.
Film Stack란 무엇입니까?
Film Stack은(는) diego.varese에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A film queue for Netflix."입니다.
확장 프로그램 스크린샷
Film Stack 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Instant Queue for Netflix. For some reason unknown to all, some countries don't have the Instant Queue feature in Netflix. This extension allows you to add movies to a queue that lives in your browser. Bookmark permissions are needed because the extension uses your bookmarks (the 'Film Stack movies' folder) to sync your queue across computers. Please report any bugs you find in the comments, thanks! Updates: v1.5.0: Fixed for Netflix's new layout. v1.4.2: Added domains movies1.netflix.com and movies2.netflix.com for users of unblock-us.com v1.4.1: Adding Netflix movies now works in Genre pages. v1.4.0: You can now add Netflix movies to your queue directly from the popups in the main Netflix page! v1.3.3: Fixed plugin to work with the new Cuevana layout. v1.3: Added filtering by Series or Movies and a search box. Fixing bug with some series in Netflix. v1.2: Movies and TV series are now sorted by default. Movies that are already in your queue show "Added to Film Stack" in the movie's page. v1.1: Now it works for TV series in Netflix. Fixed bug with movies with trailers in Netflix.
확장 프로그램 기본 정보
이름 | Film Stack |
ID | gpcloglcoibdbkafhnmghmaeofdikpnm |
공식 URL | https://chromewebstore.google.com/detail/film-stack/gpcloglcoibdbkafhnmghmaeofdikpnm |
설명 | A film queue for Netflix. |
파일 크기 | 58.13 KB |
설치 횟수 | 4,527 |
현재 버전 | 1.5.2 |
최근 업데이트 | 2014-10-04 |
출시 날짜 | 2014-10-04 |
평점 | 3.81/5 총 36 개의 평점 |
개발자 | diego.varese |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Film Stack", "version": "1.5.2", "manifest_version": 2, "description": "A film queue for Netflix.", "background": { "page": "background.html" }, "browser_action": { "default_icon": "ico.png", "default_popup": "popup.html" }, "icons": { "16": "ico.png", "48": "ico48.png", "128": "ico128.png" }, "permissions": [ "http:\/\/*.netflix.com\/*", "bookmarks" ], "content_scripts": [ { "matches": [ "*:\/\/movies.netflix.com\/*", "*:\/\/movies1.netflix.com\/*", "*:\/\/movies2.netflix.com\/*" ], "js": [ "jquery-1.6.4.min.js", "netflixHome.js" ] }, { "matches": [ "http:\/\/movies.netflix.com\/WiMovie\/*", "http:\/\/movies1.netflix.com\/WiMovie\/*", "http:\/\/movies2.netflix.com\/WiMovie\/*", "http:\/\/www.netflix.com\/WiMovie\/*" ], "js": [ "jquery-1.6.4.min.js", "netflixMovie.js" ] } ] } |