Greasy Fork

PAPAZ addic7ed

Switches Addic7ed to show only English subtitles

目前为 2015-07-07 提交的版本。查看 最新版本

// ==UserScript==
// @name        PAPAZ addic7ed
// @namespace   *
// @include     http://www.addic7ed.com/serie/*
// @version     1
// @grant       none
// @description   Switches Addic7ed to show only English subtitles
// ==/UserScript==

var a = new String(document.location);
var b = a.substring(a.length-2,a.length);

function delay() {
var drop = document.getElementById("filterlang");

    drop.value="1";
    location.assign("javascript:filterChange();void(0)");   
}


if (b!="/1") {
    setTimeout(delay, 100);
}