Import and export your favourites and time wasted on Seriesfeed.com
Enjoy.
Version 1.0.3
- Import your Favourites from Bierdopje.com
- Import Time Wasted from Bierdopje.com
- (soon) Import lists from IMDb.com as favourites
- Export your favourites to Excel or other formats (
TSV,CSV,XML,JSON) - (soon) Sync Bierdopje updates with Seriesfeed
Check out other userscripts for Seriesfeed by me:
- Seriesfeed Move: drag and drop frontpage items to your liking.
- Seriesfeed Favourites Dropdown: Choose your favourites from a dropdown on any page, just like Bierdopje!
- Seriesfeed Episode Inverter: Choose whether episodes are sorted ascending or descending.
- Seriesfeed Season Separator: Draws a thick line between seasons.
If you like my work so much you feel like doing something nice for me, a complete stranger of the internet, you can.
Donate here.
If you want to help with the development, you can. To setup the dev in combination with Tampermonkey/other, do the following:
- Open the repository in your favourite IDE.
- Open CMD, PowerShell or the terminal (VS Code tip: use CTRL + `).
2.5: If not already,cdto this repository. - Type:
tsc --watchto run the TypeScript compiler. Thetsconfig.jsonfile will determine the location of the output. - Add a userscript with the following:
// ==UserScript==
// @name Seriesfeed Transporter
// @namespace https://www.seriesfeed.com
// @version dev
// @description Import and export your favourites and time wasted on Seriesfeed.com.
// @match https://*.seriesfeed.com/*
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @connect www.bierdopje.com
// @connect www.imdb.com
// @domain www.bierdopje.com
// @domain www.imdb.com
// @require https://code.jquery.com/jquery-3.2.1.min.js
// @require file://{YOUR_CLONE}/seriesfeed-transporter-latest.user.js
// @author Tom
// @copyright 2017 - 2020, Tom
// ==/UserScript==
/* jshint -W097 */
/* global $, GM_xmlhttpRequest, Promise, console */
'use strict';
- Make sure you have ticked the box
Allow access to file URLsfor the Tampermonkey/other extension.
Any change will compile (some would say transpile) and a browser refresh will do the rest.