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 |
电子邮箱 | [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\/*" ] } |