Netflix God Mode
God Mode Extension for Netflix that allows for easy viewing of movies without scrolling
Netflix God Mode क्या है?
Netflix God Mode thomasrockhu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "God Mode Extension for Netflix that allows for easy viewing of movies without scrolling"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netflix God Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/" ] } |