Netflix God Mode
God Mode Extension for Netflix that allows for easy viewing of movies without scrolling
Netflix God Modeคืออะไร?
Netflix God Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thomasrockhu และคุณลักษณะหลักของมันคือ "God Mode Extension for Netflix that allows for easy viewing of movies without scrolling"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix God Mode
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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\/" ] } |