Greasy Fork is available in English.

楽天: 必須の項目選択肢の自動選択

楽天市場にて、必須の項目選択肢・オプション選択肢の自動選択を行うプログラム・スクリプト。

// ==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)