zoukankan      html  css  js  c++  java
  • 油猴 tamperMonkey 在百度首页 添加自己的自定义链接

    发现 GM_addStyle 函数不能用了,从写加载css函数。 剩下找个定位 添加内容 就很简单了。

    // ==UserScript==
    // @name         helloWorld
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description  try to take over the world!
    // @author       You
    // @match        https://www.baidu.com/
    // @grant        none
    // @require      http://code.jquery.com/jquery-1.11.0.min.js
    // ==/UserScript==
    
    $(document).ready(function(){
        // 在这里写你的代码...
    
    
        // console.info('form',$("form"))
        let m = `<div style="color:#fff;position: absolute;bottom: -30px;">
    <a class="myLink" href="http://www.baidu.com/" target="_blank">aaa</a>
    </div>`
        $(m).appendTo("#s_form_wrapper")
    
    
    });
    
    
    
    (function() {
        'use strict';
        // Your code here...
        function addGlobalStyle(css) {
            var head, style;
            head = document.getElementsByTagName('head')[0];
            if (!head) { return; }
            style = document.createElement('style');
            style.type = 'text/css';
            style.innerHTML = css;
            head.appendChild(style);
        }
    
        addGlobalStyle('a.myLink, a.myLink:hover { color:#fff; }');
    
    
    })();
  • 相关阅读:
    组合总和
    子集Ⅱ
    子集
    全排列Ⅱ
    全排列
    填充下一个结点下一个Next结点
    把二叉树转化成累加树
    二叉树的左叶子之和
    高速C/C++编译工具ccache
    【转载】如何用U盘制作Ubuntu启动盘
  • 原文地址:https://www.cnblogs.com/pengchenggang/p/10641289.html
Copyright © 2011-2022 走看看