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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert Kohr และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Jump Scroll

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}