Add Nzb Search Link To IMDb

Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.

Cos'è Add Nzb Search Link To IMDb?

Add Nzb Search Link To IMDb è un'estensione di Chrome sviluppata da applestoapples, e la sua funzione principale è "Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Add Nzb Search Link To IMDb

Scarica i file di estensione Add Nzb Search Link To IMDb in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ALPHA Version - This is a very early release, so please bear with the bugs!

If you're the kind of person who peruses IMDb to discover movies, then this is the plugin for you!

This plugin will add a link underneath the movie title that directs you to your favorite NZB indexer (nzbs.in by default), with the movie name and year already pre-filled as the search criteria!

Saves countless clicks and keyboard presses.

*NOTE*
If you'd like to leave feedback or bug reports: On the Details tab, use the "Send Feedback" link!                    

Informazioni di Base sull'Estensione

Nome Add Nzb Search Link To IMDb Add Nzb Search Link To IMDb
ID ficckoaloeoadclcplombfcalnbobpfk
URL Ufficiale https://chrome.google.com/webstore/detail/add-nzb-search-link-to-im/ficckoaloeoadclcplombfcalnbobpfk
Descrizione Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.
Dimensione del File 288 KB
Conteggio Installazioni 209
Versione Corrente 0.0.2.2
Ultimo Aggiornamento 2013-07-31
Data di Pubblicazione 2013-07-31
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore applestoapples
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/applestoapples/AddNzbSearchLinkToIMDb
URL della Pagina di Aiuto https://github.com/applestoapples/AddNzbSearchLinkToIMDb
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add Nzb Search Link To IMDb",
    "version": "0.0.2.2",
    "manifest_version": 2,
    "description": "Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/addnzbsearchlinktoimdb\/ficckoaloeoadclcplombfcalnbobpfk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "default_locale": "en",
    "options_page": "src\/options_custom\/index.html",
    "background": {
        "scripts": [
            "src\/options_custom\/lib\/store.js",
            "src\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.imdb.com\/title\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/options_custom\/lib\/store.js",
                "js\/sprintf.js",
                "src\/options_custom\/manifest.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ]
}