BS.to - Open Links directly

Opens BS.to Episode-Links directly

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

// ==UserScript==
// @name         BS.to - Open Links directly
// @namespace    http://pottii.de
// @version      0.1
// @description  Opens BS.to Episode-Links directly
// @author       Scarwolf
// @match        http://bs.to/serie/*/*/*/*-*
// @grant        none
// ==/UserScript==

var check = document.getElementById("video_actions").getElementsByTagName('a')[0];
if(check != null){
    var url = check.href;
    console.log("Opening " + url);
    window.open(url);
}