编写一个油猴脚本

2019-01-14  本文已影响7人  Robin92

油猴(TamperMonkey)是Chrome 的一个扩展插件,使用它你可以从网上找一些方便使用的浏览器脚本,并且还可以自己写一些脚本(可以在网上阅读其他人脚本来学习)。

本人初步接触,下面是在一个简单的脚本:过滤 Bing 搜索结果的广告。

// ==UserScript==
// @name         FilterBingAds
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Me
// @match        https://cn.bing.com/search?*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function(){
        if (location.origin == "https://cn.bing.com" && location.pathname == "/search") {
            var docs = document.getElementsByClassName("b_ad");
            for (var index in docs) {
                var doc = docs[index]
                doc.style.display = 'none';
            }
        }
    }, 1200);
})();

其中前面的注释是新建脚本时,自己填充的。注意:

上一篇下一篇

猜你喜欢

热点阅读