Greasy Fork is available in English.

Seriesfeed++

A fork of Bierdopje AddOn Plus for Seriesfeed

Tác giả
mr.Invisible
Cài đặt hàng ngày
0
Số lần cài đặt
261
Đánh giá
3 0 0
Phiên bản
2.01
Đã tạo
09-12-2015
Đã cập nhật
18-12-2017
Giấy phép
N/A
Áp dụng cho

This script is a fork of the Bierdopje AddOn Plus, but for the SeriesFeed website instead. It was nearly entirely rewritten.

It basically adds options to the site to easily obtain subtitles in Dutch or English for episodes, and/or launch go to the appropriate search engines to download the episode.

Installation

To install and use the script, you need to perform the following two steps:

  1. Install the appropriate add-on for your browser:
    • Firefox users should install GreaseMonkey
    • Chrome/Opera/Chromium users should install TamperMonkey
    • If you use another browser it ends here, sorry :(
  2. Click on the green "Install this script" button on top of this page, and confirm you want to install this. This only needs to be done once, it will be updated automatically afterwards.

Configuration

You can configure the script by opening up the configuration panel of it. This can be done in two ways:

  • If you are on the SeriesFeed website, you can open the panel through the menu item "Algemeen -> SeriesFeed++ configureren"
  • The Greasemonkey/Tampermonkey icon has a list of user commands available when you're on the page of SeriesFeed, this contains the "configuratie" option.

Configurable settings

The next settings are available:

  • Languages for subtitles: Dutch and English are available right now.
  • Websites for subtitles: Select the sites you want to search for subtitles on.
  • Media formats: Which quality do you want to search for?
  • Media sources: Where do you want to search for the episodes?

Media formats

This must be an array of names, e.g.:

["1080p x264", "1080p x265"]

Media sources

This must be an array of provider objects.

Each entry must follow the next structure:

{
    "name": "Source name",
    "url": "https://my.source.url/search/{show} {season_episode} {quality}", // {show}, {season_episode} and {quality} are obligatory.
    "invalid_characters": { // This element is optional. Every character in the old array will be replaced by the new character on the same index (lengths must therefore be equal!)
        "old": ["(", ")"],
        "new": ["", ""]
    },
    "episode_character": "x", // optional, default is "E"
    "quality": { // This MUST contain every key from the media quality array.
        "1080p x264": "1080p x264",
        "1080p x265": "1080p x265"
    }
}

Media sources default config

If you mess up your media provider config, you can use this one to return to the default settings:

[{"name": "RARBG","url": "https://rarbg.to/torrents.php?search={show} {season_episode} {quality}","quality":{"WEB-DL": "WEB-DL","HDTV 1080": "1080p x264","HDTV 720": "720p x264","x265": "x265"}},{"name":"TPB","url":"https://thepiratebay.org/search/{show} {season_episode} {quality}","quality":{"WEB-DL":"WEB-DL","HDTV 1080":"1080p x264","HDTV 720":"720p x264","x265":"x265"}},{"name":"NZBIndex","url":"https://www.nzbindex.com/search/?q={show} {season_episode} {quality}&max=25&sort=agedesc&hidespam=1&more=0","quality":{"WEB-DL":"720p|1080p WEB-DL","HDTV 1080":"1080p x264","HDTV 720":"720p x264","x265":"x265"}},{"name":"NZBClub","url":"https://www.nzbclub.com/search.aspx?q={show} {season_episode} {quality}&szs=20&sze=24&st=1&sp=1&sn=1","quality":{"WEB-DL":"WEB-DL","HDTV 1080":"1080p x264","HDTV 720":"720p x264","x265":"x265"}},{"name":"BinSearch","url":"https://binsearch.info/index.php?q={show} {season_episode} {quality}&max=25&adv_age=999&adv_sort=date&adv_col=on&font=small","quality":{"WEB-DL":"720p|1080p WEB-DL","HDTV 1080":"1080p x264","HDTV 720":"720p x264","x265":"x265"}}]