The PirateBay Imdb Plugin
It's a plugin that allows previsualize imdb information when is available in the description (through a link).
The PirateBay Imdb Plugin란 무엇입니까?
The PirateBay Imdb Plugin은(는) slothdevelopers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It's a plugin that allows previsualize imdb information when is available in the description (through a link)."입니다.
확장 프로그램 스크린샷
The PirateBay Imdb Plugin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's a plugin for The PirateBay that allows previsualize imdb information when is available in the description (through a link). It uses https://www.omdbapi.com to collect the necesary info.
확장 프로그램 기본 정보
이름 | |
ID | glgjecfihejmjabjnebdeagibbgefgcc |
공식 URL | https://chrome.google.com/webstore/detail/the-piratebay-imdb-plugin/glgjecfihejmjabjnebdeagibbgefgcc |
설명 | It's a plugin that allows previsualize imdb information when is available in the description (through a link). |
파일 크기 | 64.89 KB |
설치 횟수 | 54 |
현재 버전 | 2.0 |
최근 업데이트 | 2015-10-01 |
출시 날짜 | 2015-10-01 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | slothdevelopers |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "The PirateBay Imdb Plugin", "description": "It's a plugin that allows previsualize imdb information when is available in the description (through a link).", "version": "2.0", "icons": { "16": "icon_16.png", "48": "icon.png", "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "The PirateBay Imdb" }, "permissions": [ "https:\/\/thepiratebay.cd\/", "https:\/\/thepiratebay.mn\/", "https:\/\/piratemirror.net\/", "https:\/\/torrentdr.com\/", "https:\/\/thebay.tv\/", "https:\/\/thepiratebay.uk.net\/", "https:\/\/thepiratebay.gs\/", "https:\/\/thepiratebay.la\/", "https:\/\/thepiratebay.vg\/", "https:\/\/thepiratebay.am\/", "https:\/\/thepiratebay.gd\/", "https:\/\/thepiratebay.cr\/" ], "content_scripts": [ { "matches": [ "https:\/\/thepiratebay.cd\/*", "https:\/\/thepiratebay.mn\/*", "https:\/\/piratemirror.net\/*", "https:\/\/torrentdr.com\/*", "https:\/\/thebay.tv\/*", "https:\/\/thepiratebay.uk.net\/*", "https:\/\/thepiratebay.gs\/*", "https:\/\/thepiratebay.la\/*", "https:\/\/thepiratebay.vg\/*", "https:\/\/thepiratebay.am\/*", "https:\/\/thepiratebay.gd\/*", "https:\/\/thepiratebay.cr\/*" ], "js": [ "jquery-2.1.4.min.js", "addImdbInfo.js" ], "run_at": "document_start", "css": [ "piratebay_imdb.css" ] } ] } |