Remove AngularJS From Angular Search

This script simply removes "AngularJS" from google searches containing the word "Angular".

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

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

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

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

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

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

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

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

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

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

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

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

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

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name           Remove AngularJS From Angular Search
// @description:en    This script simply removes "AngularJS" from google searches containing the word "Angular".
// @include        /^https?://(?:www|encrypted|ipv[46])\.google\.[^/]+/(?:$|[#?]|search|webhp|imgres)/
// @run-at         document-start
// @grant          none
// @version 0.0.1.20180706155432
// @namespace https://greasyfork.org/users/194918
// @description This script simply removes "AngularJS" from google searches containing the word "Angular".
// ==/UserScript==

if (
  !location.href.toLowerCase().includes('angularjs') &&
  location.href.toLowerCase().includes('angular')
) {
  var newLocation = location.href.replace(/angular/i, 'Angular+-AngularJS');
  location.replace(newLocation);
}