Youtube Auto Quick Buffer

Quickens the bufferer on all Youtube videos

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

  1. // ==UserScript==
  2. // @name Youtube Auto Quick Buffer
  3. // @namespace http://userscripts.org/users/zackton
  4. // @description Quickens the bufferer on all Youtube videos
  5. // @include *.youtube.com/watch?v=*
  6. // @run-at document-end
  7. // @grant none
  8. // @version 1.2
  9. // ==/UserScript==
  10.  
  11. var add = document.URL.indexOf("&gl=CA");
  12. if (add === -1) {
  13. window.location = document.URL + "&gl=CA";
  14. }