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」です。
拡張機能のスクリーンショット
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
拡張機能の基本情報
名前 | |
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\/" ] } |