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.

O que é Add Nzb Search Link To IMDb?

Add Nzb Search Link To IMDb é uma extensão do Chrome desenvolvida por applestoapples, e sua principal característica é "Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Add Nzb Search Link To IMDb

Baixe arquivos de extensão Add Nzb Search Link To IMDb no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Add Nzb Search Link To IMDb Add Nzb Search Link To IMDb
ID ficckoaloeoadclcplombfcalnbobpfk
URL Oficial https://chrome.google.com/webstore/detail/add-nzb-search-link-to-im/ficckoaloeoadclcplombfcalnbobpfk
Descrição Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.
Tamanho do Arquivo 288 KB
Contagem de Instalações 209
Versão Atual 0.0.2.2
Última Atualização 2013-07-31
Data de Publicação 2013-07-31
Classificação 4.43/5 Total de 7 Avaliações
Desenvolvedor applestoapples
Tipo de Pagamento free
Site da Extensão https://github.com/applestoapples/AddNzbSearchLinkToIMDb
URL da Página de Ajuda https://github.com/applestoapples/AddNzbSearchLinkToIMDb
Idiomas Suportados 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"
            ]
        }
    ]
}