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”。

扩展截图

screenshot

下载Netflix God Mode扩展crx文件

下载Netflix God Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Netflix God Mode Netflix God Mode
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\/"
    ]
}