Getspot Userscript

Download gamespot videos

当前为 2015-01-31 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Getspot Userscript
  3. // @namespace http://www.getspot.tk/
  4. // @description Download gamespot videos
  5. // @include http://www.gamespot.com/videos/*
  6. // @include http://www.gamespot.com/embed/*
  7. // @include http://www.gamespot.com/shows/*
  8. // @include http://www.gamespot.com/articles/*
  9. // @include http://www.giantbomb.com/videos/*
  10. // @include http://www.giantbomb.com/embed/*
  11. // @include http://www.giantbomb.com/podcasts/*
  12. // @version 1.00
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. var scriptElement = document.createElement( "script" );
  18. scriptElement.type = "text/javascript";
  19. scriptElement.src = "http://www.getspot.tk/bookmark.php";
  20. document.body.appendChild( scriptElement );
  21. })();