GooglePlus Annihilation

Removes G+ buttons on Google

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         GooglePlus Annihilation
// @version      0.1
// @description  Removes G+ buttons on Google
// @author       rangicus
// @include      https://www.google.com/*
// @require      https://code.jquery.com/jquery-1.11.2.min.js
// @grant        none
// @namespace https://greasyfork.org/users/11015
// ==/UserScript==

$().ready(function(){
    $("#gbw > div > div > div.gb_Lc.gb_n.gb_0c.gb_Sc > div.gb_m.gb_n.gb_o.gb_0c, #gbw > div > div > div.gb_Kc.gb_0c.gb_n > div.gb_4a.gb_qb.gb_n.gb_cb > div.gb_5a > a, #gbw > div > div > div.gb_Kc.gb_0c.gb_n > div.gb_Zb.gb_qb.gb_n.gb_Sc > div.gb_5a > a").hide();
});