IMDB Torrent Search
A simple extension that displays torrents for IMDB movies and series directly onto the page
IMDB Torrent Search란 무엇입니까?
IMDB Torrent Search은(는) crecket에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple extension that displays torrents for IMDB movies and series directly onto the page"입니다.
확장 프로그램 스크린샷
IMDB Torrent Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
We now support custom links for sites we don't support by default. Source can be found at https://github.com/Crecket/imdb-torrent-search feel free to submit bug reports and suggestions there
확장 프로그램 기본 정보
이름 | IMDB Torrent Search |
ID | kaacflffkmlaiebklgemhmlfbhificko |
공식 URL | https://chromewebstore.google.com/detail/imdb-torrent-search/kaacflffkmlaiebklgemhmlfbhificko |
설명 | A simple extension that displays torrents for IMDB movies and series directly onto the page |
파일 크기 | 153 KB |
설치 횟수 | 1,790 |
현재 버전 | 1.6.1 |
최근 업데이트 | 2021-04-29 |
출시 날짜 | 2020-04-18 |
평점 | 3.64/5 총 14 개의 평점 |
개발자 | crecket |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IMDB Torrent Search", "short_name": "IMDB Torrent Search", "description": "A simple extension that displays torrents for IMDB movies and series directly onto the page", "version": "1.6.1", "offline_enabled": false, "background": { "scripts": [ "build\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/www.imdb.com\/title\/*", "https:\/\/www.imdb.com\/title\/*" ], "css": [ "build\/content.css" ], "js": [ "build\/content.js" ] } ], "browser_action": { "default_icon": "img\/logo-16x16.png", "default_popup": "popup.html" }, "icons": { "16": "img\/logo-16x16.png", "48": "img\/logo-48x48.png", "128": "img\/logo-128x128.png" }, "permissions": [ "storage", "https:\/\/yts.mx\/*", "https:\/\/eztv.re\/*" ], "web_accessible_resources": [ "img\/logo-16x16.png", "img\/icon-magnet.gif", "img\/1337x-favicon.png", "img\/extratorrent-favicon.png", "img\/torrents-favicon.png", "img\/rargb-favicon.png", "img\/aiosearch-favicon.png", "img\/ibit-favicon.png", "img\/tpb-favicon.png" ], "content_security_policy": "script-src 'self' https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com 'unsafe-eval'; object-src 'self' https:\/\/fonts.googleapis.com" } |