您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
楽天市場にて、必須の項目選択肢・オプション選択肢の自動選択を行うプログラム・スクリプト。
// ==UserScript== // @name 楽天: 必須の項目選択肢の自動選択 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 楽天市場にて、必須の項目選択肢・オプション選択肢の自動選択を行うプログラム・スクリプト。 // @author You // @match https://item.rakuten.co.jp/rakutenmobile-store/xperia-10m3-lite_bundle/* // @grant none // @run-at document-idle // @noframes // @license mit // ==/UserScript== Array.from(document.querySelectorAll('[id^=normal_basket_] div[name^="select_10"][class*=" required_option"] select')).map(a => a.selectedIndex = 1)