IMDB Torrent Search
A simple extension that displays torrents for IMDB movies and series directly onto the page
Что такое IMDB Torrent Search?
IMDB Torrent Search - это расширение Chrome, разработанное crecket, и его основная функция - "A simple extension that displays torrents for IMDB movies and series directly onto the page".
Снимки экрана расширения
Скачать файл CRX расширения IMDB Torrent Search
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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"
} | |