mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
add exttorrents a public site. resolves #6285
This commit is contained in:
parent
8835a9658d
commit
fe7710299d
2 changed files with 63 additions and 0 deletions
|
@ -42,6 +42,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* ETTV
|
||||
* EliteTorrent.biz
|
||||
* ExtraTorrent.ag
|
||||
* EXT Torrents
|
||||
* EZTV
|
||||
* Frozen Layer
|
||||
* GkTorrent
|
||||
|
|
62
src/Jackett.Common/Definitions/exttorrents.yml
Normal file
62
src/Jackett.Common/Definitions/exttorrents.yml
Normal file
|
@ -0,0 +1,62 @@
|
|||
---
|
||||
site: exttorrents
|
||||
name: EXT Torrents
|
||||
description: "EXT Torrents is a Public torrent site for MOVIES / TV / GENERAL"
|
||||
language: en-us
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://ext.to/
|
||||
|
||||
caps:
|
||||
categories:
|
||||
"/anime/": TV/Anime
|
||||
"/applications/": PC
|
||||
"/books/": Books
|
||||
"/games/": PC/Games
|
||||
"/movies/": Movies
|
||||
"/music/": Audio
|
||||
"/other/": Other
|
||||
"/tv/": TV
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selector: a[href^="magnet:?xt="]
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: "{{ if .Keywords }}search/?order=age&sort=desc&q={{ .Keywords }}{{ else }}latest/{{ end }}"
|
||||
rows:
|
||||
selector: table.table-striped > tbody > tr
|
||||
fields:
|
||||
category:
|
||||
selector: td:nth-child(1) div div a
|
||||
attribute: href
|
||||
title:
|
||||
selector: td:nth-child(1) div a
|
||||
details:
|
||||
selector: td:nth-child(1) div a
|
||||
attribute: href
|
||||
download:
|
||||
selector: td:nth-child(1) div a
|
||||
attribute: href
|
||||
size:
|
||||
selector: td:nth-child(2)
|
||||
files:
|
||||
selector: td:nth-child(3)
|
||||
date:
|
||||
selector: td:nth-child(4)
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
leechers:
|
||||
selector: td:nth-child(6)
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
Loading…
Reference in a new issue