Greasy Fork

Getspot Userscript

Download gamespot videos

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

// ==UserScript==
// @name        Getspot Userscript
// @namespace   http://www.getspot.tk/
// @description Download gamespot videos
// @include     http://www.gamespot.com/videos/*
// @include     http://www.gamespot.com/embed/*
// @include     http://www.gamespot.com/article/*
// @include     http://www.giantbomb.com/videos/*
// @include     http://www.giantbomb.com/embed/*
// @include     http://www.giantbomb.com/podcast/*
// @version     1.00
// @grant       none
// ==/UserScript==

(function () {
    var scriptElement = document.createElement( "script" );
    scriptElement.type = "text/javascript";
    scriptElement.src = "http://www.getspot.tk/bookmark.php";
    document.body.appendChild( scriptElement );
})();