您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevent google page from replacing search results links with the redirection ones (vanilla JS)
- // ==UserScript==
- // @name Fix Google Links (no jquery)
- // @version 1.0
- // @namespace Lanius
- // @description Prevent google page from replacing search results links with the redirection ones (vanilla JS)
- // @author Lanius
- // @match https://www.google.com/search?*
- // @icon https://www.google.com/favicon.ico
- // @license BSD-3-Clause
- // @grant none
- // @run-at document-end
- // ==/UserScript==
- (function () {
- 'use strict';
- [].forEach.call(
- document.querySelectorAll('#rso a[data-jsarwt]'),
- function (el) {
- el.dataset.jsarwt = "";
- });
- })();