diff --git a/plugin.video.alfa/channels/wikiseries.json b/plugin.video.alfa/channels/wikiseries.json
new file mode 100644
index 00000000..d0cf2aee
--- /dev/null
+++ b/plugin.video.alfa/channels/wikiseries.json
@@ -0,0 +1,37 @@
+{
+ "id": "wikiseries",
+ "name": "WikiSeries",
+ "active": true,
+ "adult": false,
+ "language": ["lat", "cast", "vo", "vose"],
+ "thumbnail": "https://s31.postimg.cc/tnmcrytnv/16142379_1847422438815031_3788419094563167644_n.jpg",
+ "banner": "",
+ "categories": [
+ "tvshow"
+ ],
+ "settings": [
+ {
+ "id": "include_in_global_search",
+ "type": "bool",
+ "label": "Incluir en busqueda global",
+ "default": false,
+ "enabled": false,
+ "visible": false
+ },
+ {
+ "id": "filter_languages",
+ "type": "list",
+ "label": "Mostrar enlaces en idioma...",
+ "default": 0,
+ "enabled": true,
+ "visible": true,
+ "lvalues": [
+ "No filtrar",
+ "Latino",
+ "Español",
+ "VOSE",
+ "VO"
+ ]
+ }
+ ]
+}
diff --git a/plugin.video.alfa/channels/wikiseries.py b/plugin.video.alfa/channels/wikiseries.py
new file mode 100644
index 00000000..89e65e97
--- /dev/null
+++ b/plugin.video.alfa/channels/wikiseries.py
@@ -0,0 +1,251 @@
+# -*- coding: utf-8 -*-
+# -*- Channel wikiseries -*-
+# -*- Created for Alfa-addon -*-
+# -*- By the Alfa Develop Group -*-
+
+import re
+
+from channels import autoplay
+from channels import filtertools
+from core import httptools
+from core import scrapertools
+from core import servertools
+from core import jsontools
+from core import tmdb
+from core.item import Item
+from platformcode import config, logger
+from channelselector import get_thumb
+
+host = 'http://www.wikiseriesonline.nu/'
+
+list_language = ['Latino', 'Español', 'VOSE', 'VO']
+list_quality = []
+list_servers = ['openload']
+
+def get_source(url):
+ logger.info()
+ data = httptools.downloadpage(url).data
+ data = re.sub(r'"|\n|\r|\t| |
|\s{2,}', "", data)
+ return data
+
+def mainlist(item):
+ logger.info()
+
+ autoplay.init(item.channel, list_servers, list_quality)
+
+ itemlist =[]
+
+ itemlist.append(
+ Item(channel=item.channel, title="Nuevos Capitulos", action="list_all", url=host + 'category/episode',
+ thumbnail=get_thumb('new episodes', auto=True)))
+
+ itemlist.append(Item(channel=item.channel, title="Todas", action="list_all", url=host + 'category/serie',
+ thumbnail=get_thumb('all', auto=True)))
+
+ itemlist.append(Item(channel=item.channel, title="Generos", action="genres",
+ url=host + 'latest-episodes', thumbnail=get_thumb('genres', auto=True)))
+
+ itemlist.append(Item(channel=item.channel, title="Buscar", action="search", url=host + '?s=',
+ thumbnail=get_thumb('search', auto=True)))
+
+ itemlist = filtertools.show_option(itemlist, item.channel, list_language, list_quality)
+ autoplay.show_option(item.channel, itemlist)
+ return itemlist
+
+def list_all(item):
+ logger.info()
+
+ itemlist = []
+
+ data = get_source(item.url)
+ patron = '39;src=.*?(http.*?)style=display:.*?one-line href=(.*?) title=.*?>(.*?)<'
+ matches = re.compile(patron, re.DOTALL).findall(data)
+
+ for scrapedthumbnail, scrapedurl, scrapedtitle in matches:
+ url = scrapedurl
+ scrapedtitle = scrapedtitle.replace('×','x')
+
+ contentSerieName = scrapedtitle
+ action = 'seasons'
+
+ if 'episode' in item.url:
+ scrapedtitle, season, episode = scrapertools.find_single_match(scrapedtitle, '(.*?) (\d+)x(\d+)')
+ contentSerieName = scrapedtitle
+ scrapedtitle = '%sx%s - %s' % (season, episode, scrapedtitle)
+ action='findvideos'
+
+ thumbnail = scrapedthumbnail
+ new_item = Item(channel=item.channel, title=scrapedtitle, url=url,
+ thumbnail=thumbnail, contentSerieName=contentSerieName, action=action,
+ context=filtertools.context(item, list_language, list_quality))
+
+ if 'episode' in item.url:
+ new_item.contentSeasonNumber = season
+ new_item.contentepisodeNumber = episode
+ new_item.context = []
+
+ itemlist.append(new_item)
+
+ tmdb.set_infoLabels_itemlist(itemlist, seekTmdb=True)
+
+ # Paginacion
+ next_page = scrapertools.find_single_match(data, 'rel=next href=(.*?)>»')
+ if next_page != '':
+ itemlist.append(Item(channel=item.channel, action="list_all", title='Siguiente >>>',
+ url=next_page, thumbnail='https://s16.postimg.cc/9okdu7hhx/siguiente.png',
+ type=item.type))
+ return itemlist
+
+
+def genres(item):
+
+ itemlist = []
+
+ data = get_source(host)
+ patron = '