Original Google For Personal Blocklist

将使用Personal Blocklist (by Google)后的Google的搜索界面改成原来的样子

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Original Google For Personal Blocklist
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  将使用Personal Blocklist (by Google)后的Google的搜索界面改成原来的样子
// @author       ipcjs
// @include      https://www.google.com/search?*
// @include      https://www.google.com/webhp?*
// @include      https://www.google.co.jp/search?*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';
    let css = `.blockLink {
        opacity: 0;
        height: 0px;
    }
    .blockLink:hover {
        opacity: 1;
    }
    .srg div.g.pb {
    }`;
    let style = document.createElement('style');
    style.innerHTML = css;
    document.querySelector('head').appendChild(style);
})();