Greasy Fork 还支持 简体中文。

FireCold Source

Redirect firecold video to youtube source if it exists.

目前為 2014-08-16 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name FireCold Source
  3. // @version 1.0.1
  4. // @description Redirect firecold video to youtube source if it exists.
  5. // @include http*://*.firecold.com/videos/*
  6. // @namespace https://greasyfork.org/users/3159
  7. // ==/UserScript==
  8.  
  9. var x=document.getElementById("player").firstElementChild.getAttribute("flashvars")
  10. var id = (x.split('v='))[1]
  11. if (id) location.replace("https://www.youtube.com/watch?v=" + id)