DKScriptPlugin

try to take over the world!

  1. // ==UserScript==
  2. // @name DKScriptPlugin
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author kai.dai
  7. // @match https://www.baidu.com*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. debugger
  14. // alert("daikai");
  15. var lg = $('#lg');
  16. $(lg).html('<img src="https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=1689567704,3292204273&fm=26&gp=0.jpg" />');
  17. })();