您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
受発注チェック画面で縦横軸管理画面に飛ぶ新たなボタンを追加
// ==UserScript== // @name 縦横軸設定リマインダー // @namespace http://tampermonkey.net/ // @version 1.00.1 // @description 受発注チェック画面で縦横軸管理画面に飛ぶ新たなボタンを追加 // @license MIT // @match *://plus-nao.com/forests/*/sku_check/* // @grant none // ==/UserScript== (function() { 'use strict'; let currentUrl = window.location.href; let code = currentUrl.split('/').pop(); let axisLink = `https://starlight.plusnao.co.jp/goods/axisCode?code=${code}`; let saveButton = document.querySelector('.submit input[value="保存して出品完了"]'); if (saveButton) { let axisButton = document.createElement('input'); axisButton.type = 'button'; axisButton.value = '保存して縦横軸設定を開く'; axisButton.style.background = '#D6DADE'; axisButton.style.border = '1px solid #6C808C'; axisButton.style.color = '#6C808C'; axisButton.style.padding = '4px 8px'; axisButton.style.textDecoration = 'none'; axisButton.style.minWidth = '0'; axisButton.style.fontWeight = 'normal'; axisButton.style.display = 'inline-block'; axisButton.style.width = 'auto'; axisButton.style.marginLeft = '10px'; axisButton.style.fontSize = '110%'; axisButton.addEventListener('mouseover', function() { axisButton.style.background = '-webkit-gradient(linear, left top, left bottom, from(#f7f7e1), to(#eeeca9))'; axisButton.style.color = '#ffffff'; axisButton.style.border = '1px solid #454D6B'; }); axisButton.addEventListener('mouseout', function() { axisButton.style.background = '#D6DADE'; axisButton.style.color = '#6C808C'; axisButton.style.border = '1px solid #6C808C'; }); axisButton.addEventListener('click', function() { window.open(axisLink, '_blank'); saveButton.click(); }); saveButton.style.display = 'inline-block'; saveButton.style.width = 'auto'; saveButton.style.fontSize = '110%'; saveButton.parentElement.appendChild(axisButton); } })();