Netflix Jump Scroll

Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.

什么是Netflix Jump Scroll?

Netflix Jump Scroll是由Robert Kohr开发的Chrome扩展程序,该扩展的主要功能是“Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.”。

扩展截图

screenshot
screenshot

下载Netflix Jump Scroll扩展crx文件

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

扩展使用说明

                        The left/right scroll on netflix is slow and it tracking it bothers some people's eyes. This extension make it so that you can click the left/right buttons and it will instead jump to the next set of movies without the slow panning. 

If you would like to help improve this, the source code is at:
https://github.com/RobKohr/netflix-jump-scroll                    

扩展基本信息

名称 Netflix Jump Scroll Netflix Jump Scroll
ID gfocbgegaacpbclkmljbkkjidbemmieo
官方URL https://chromewebstore.google.com/detail/netflix-jump-scroll/gfocbgegaacpbclkmljbkkjidbemmieo
简介 Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.
文件大小 41.66 KB
安装次数 34
当前版本 1.0
更新时间 2015-05-12
上架时间 2015-05-12
评分 4.00/5 共3次评分
开发者 Robert Kohr
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Jump Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Don't like the slow scrolling of movies on netflix? With this you just click the arrows to jump to the right or left.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "jquery-2.1.4.min.js",
                "main.js"
            ],
            "matches": [
                "https:\/\/netflix.com\/*",
                "http:\/\/netflix.com\/*",
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_start"
        }
    ]
}