IMDb to Movieo

Adds a button on IMDb to open the movie in Movieo.

What is IMDb to Movieo?

IMDb to Movieo is a Chrome extension developed by Kees Kluskens, and its main feature is "Adds a button on IMDb to open the movie in Movieo.".

Extension Screenshots

screenshot

Download IMDb to Movieo Extension CRX File

Download IMDb to Movieo 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

                        This simple Chrome extension adds a button on IMDb movie pages to Movieo.

I grew tired of navigating to Movieo, searching for the same movie I had open in IMDb, and then closing the IMDb tab. This extension intends to fix that.

Movieo is a very nice movie discovering website.                    

Extension Basic Information

Name IMDb to Movieo IMDb to Movieo
ID diagoidogglbjfjbgllecdkhdmpkabge
Official URL https://chromewebstore.google.com/detail/imdb-to-movieo/diagoidogglbjfjbgllecdkhdmpkabge
Description Adds a button on IMDb to open the movie in Movieo.
File Size 23.29 KB
Installation Count 17
Current Version 1.2
Last Updated 2016-10-02
Publish Date 2016-10-02
Developer Kees Kluskens
Email [email protected]
Payment Type free
Extension Website https://github.com/SpaceK33z/imdb-to-movieo
Help Page URL https://github.com/SpaceK33z/imdb-to-movieo/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb to Movieo",
    "description": "Adds a button on IMDb to open the movie in Movieo.",
    "manifest_version": 2,
    "version": "1.2",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.imdb.com\/title\/tt*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ]
}