IMDB2Netflix
Go to netflix search page from IMDB site
IMDB2Netflixとは何ですか?
IMDB2NetflixはCarwackによって開発されたChromeの拡張機能で、その主な機能は「Go to netflix search page from IMDB site」です。
拡張機能のスクリーンショット
IMDB2Netflix拡張機能のCRXファイルをダウンロード
IMDB2Netflix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Are you like me, searching for a good movie or series on IMDB and watching them on Netflix? I made this simple chrome extension that add a button on the IMDB website and directs you to the netflix search page in a new tab Easy & Pratical NOTE: Not all movies and series on IMDB are on Netflix.
拡張機能の基本情報
名前 | |
ID | cdmjmihepfaakkoiojdjfjnehdjjmdco |
公式URL | https://chrome.google.com/webstore/detail/imdb2netflix/cdmjmihepfaakkoiojdjfjnehdjjmdco |
説明 | Go to netflix search page from IMDB site |
ファイルサイズ | 65.78 KB |
インストール数 | 31 |
現在のバージョン | 1.0 |
最終更新日 | 2016-02-13 |
公開日 | 2016-02-13 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Carwack |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "IMDB2Netflix", "version": "1.0", "manifest_version": 2, "description": "Go to netflix search page from IMDB site", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "css": [ "Style.css" ], "matches": [ "http:\/\/www.imdb.com\/title\/*" ], "js": [ "jquery.min.js", "eventhandler.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "http:\/\/www.imdb.com\/*" ] } |