クリックがずれて鬱陶しいので
- // ==UserScript==
- // @name 他の人はこちらも検索 を消す
- // @version 1
- // @include https://www.google.co.jp/search?*
- // @include https://www.google.com/search?*
- // @grant none
- // ==/UserScript==
- (()=>{
- let csse = document.createElement("style");
- document.head.appendChild(csse);
- csse.sheet.insertRule(`
- .AUiS2 {
- margin: 0 !important;
- border: 0 !important;
- height: 0;
- overflow: hidden;
- }
- `);
- csse.sheet.insertRule(`
- .exp-outline{
- display: none;
- }
- `);
- csse.sheet.insertRule(`
- .XCKyNd{
- display: none;
- }
- `);
- })();