您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Open questions page of Amazon products in a new tab.
// ==UserScript== // @name Amazon Questions New Tab // @namespace iamMG // @version 1.0 // @description Open questions page of Amazon products in a new tab. // @author iamMG // @grant GM.openInTab // @include /^https?:\/\/(www.)?amazon.*\/[a-z]p\/.*/ // @run-at document-end // @license MIT // @icon https://i.imgur.com/d5YE1Lv.png // @copyright 2019, iamMG (https://openuserjs.org/users/iamMG) // ==/UserScript== (function() { 'use strict'; var que = document.getElementById('askATFLink'); que.addEventListener('click', function(e){ this.removeAttribute('href'); var matches = /((?:.*)amazon.(?:\w+))\/(?:.*)?([a-z]p)\/(?:product\/)?([^\/\?&]+)(?:.*|$)/.exec(document.URL); var link = "/ask/questions/asin/" + matches[3]; window.open(window.location.protocol + "//" + window.location.host + link, "", "", false); }, false) })();