Greasy Fork 还支持 简体中文。

mmmturkeybacon Remove Embedded Youtube

Removes embedded youtube videos from mturkforum and mturkgrind.

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

  1. // ==UserScript==
  2. // @name mmmturkeybacon Remove Embedded Youtube
  3. // @author mmmturkeybacon
  4. // @description Removes embedded youtube videos from mturkforum and mturkgrind.
  5. // @namespace http://userscripts.org/users/523367
  6. // @match http://mturkforum.com/showthread.php?*
  7. // @match http://www.mturkgrind.com/showthread.php?*
  8. // @match http://www.mturkgrind.com/threads/*
  9. // @require http://code.jquery.com/jquery-latest.min.js
  10. // @version 1.11
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. var yt_embed = $('iframe[src^="//www.youtube.com"]');
  15. yt_embed.parent().append("<br><b>mmmturkeybacon Remove Embedded Youtube has removed this video.</b>");
  16. yt_embed.remove();