您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
マケプレのものはサムネが出ないっぽい…?
当前为
// ==UserScript== // @name Amazonの商品画像を追加 [仮] // @description マケプレのものはサムネが出ないっぽい…? // @version 1.1 // @match https://img.2chan.net/b/res/*.htm // @icon https://www.google.com/s2/favicons?domain=2chan.net // @grant none // @namespace https://gf.qytechs.cn/users/809755 // @license MIT // ==/UserScript== /* jshint esversion: 6 */ (function() { 'use strict'; function a() { document.querySelectorAll("blockquote a[href*=amazon]").forEach(a => { const m = a.href.match(/amazon[^/]+jp\/(?:dp|gp\/product)\/(\w+)/); if (m && !a.getAttribute("imgAdded")) { const img = document.createElement('img'); img.src = `//images-na.ssl-images-amazon.com/images/P/${m[1]}.09.MZZZZZZZ.jpg`; a.setAttribute("imgAdded", "1"); a.href = a.innerText = `https://www.amazon.co.jp/dp/${m[1]}`; a.parentNode.insertBefore(img, a); a.parentNode.insertBefore(document.createElement('br'), a); } }) } setInterval(a, 2 * 1000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址