IMDB2Netflix

Go to netflix search page from IMDB site

What is IMDB2Netflix?

IMDB2Netflix is a Chrome extension developed by Carwack, and its main feature is "Go to netflix search page from IMDB site".

Extension Screenshots

screenshot
screenshot

Download IMDB2Netflix Extension CRX File

Download IMDB2Netflix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name IMDB2Netflix IMDB2Netflix
ID cdmjmihepfaakkoiojdjfjnehdjjmdco
Official URL https://chrome.google.com/webstore/detail/imdb2netflix/cdmjmihepfaakkoiojdjfjnehdjjmdco
Description Go to netflix search page from IMDB site
File Size 65.78 KB
Installation Count 31
Current Version 1.0
Last Updated 2016-02-13
Publish Date 2016-02-13
Rating 5.00/5 Total 1 Ratings
Developer Carwack
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}