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.

Add Nzb Search Link To IMDb란 무엇입니까?

Add Nzb Search Link To IMDb은(는) applestoapples에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered."입니다.

확장 프로그램 스크린샷

screenshot

Add Nzb Search Link To IMDb 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Add Nzb Search Link To IMDb Add Nzb Search Link To IMDb
ID ficckoaloeoadclcplombfcalnbobpfk
공식 URL https://chrome.google.com/webstore/detail/add-nzb-search-link-to-im/ficckoaloeoadclcplombfcalnbobpfk
설명 Injects link to IMDb page that opens a new tab to your favorite NZB Search engine with search criteria entered.
파일 크기 288 KB
설치 횟수 209
현재 버전 0.0.2.2
최근 업데이트 2013-07-31
출시 날짜 2013-07-31
평점 4.43/5 총 7 개의 평점
개발자 applestoapples
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/applestoapples/AddNzbSearchLinkToIMDb
도움말 페이지 URL https://github.com/applestoapples/AddNzbSearchLinkToIMDb
지원되는 언어 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"
            ]
        }
    ]
}