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ファイルをダウンロード
IMDB Torrent Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } |