Netflix God Mode
God Mode Extension for Netflix that allows for easy viewing of movies without scrolling
Netflix God Mode란 무엇입니까?
Netflix God Mode은(는) thomasrockhu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "God Mode Extension for Netflix that allows for easy viewing of movies without scrolling"입니다.
확장 프로그램 스크린샷
Netflix God Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
God Mode Extension for Netflix This extension allows for easy viewing of Netflix movies on the dashboard without having to scroll through the cumbersome carousel. It populates the entire page with the movies so viewing is as simple as moving the scrollbar up and down. Developed by Thomas Hu https://www.linkedin.com/in/thomasrockhu Icons by Ilias Beshimov https://www.linkedin.com/in/iliasbeshimov This project is an extension of another created originally as an bookmarklet and can be viewed at http://bit2pixel.com/netflix-god-mode/ Code on Github: https://github.com/thomasrockhu/netflix-god-mode-chrome
확장 프로그램 기본 정보
이름 | |
ID | gcebimjmhlnocjgneaocniipjojkhneo |
공식 URL | https://chrome.google.com/webstore/detail/netflix-god-mode/gcebimjmhlnocjgneaocniipjojkhneo |
설명 | God Mode Extension for Netflix that allows for easy viewing of movies without scrolling |
파일 크기 | 135 KB |
설치 횟수 | 660 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2015-03-30 |
출시 날짜 | 2015-03-30 |
평점 | 2.36/5 총 14 개의 평점 |
개발자 | thomasrockhu |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix God Mode", "description": "God Mode Extension for Netflix that allows for easy viewing of movies without scrolling", "version": "1.2.3", "background": { "scripts": [ "netflixRedirect.js" ] }, "browser_action": [], "content_scripts": [ { "matches": [ "http:\/\/www.netflix.com\/*", "https:\/\/www.netflix.com\/*" ], "js": [ "underscore-min.js", "god-mode.js" ] } ], "icons": { "16": "images\/netflix_god_halo_icon_v2_16.png", "48": "images\/netflix_god_halo_icon_v2_48.png", "128": "images\/netflix_god_halo_icon_v2_128.png" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/" ] } |