My Nintendo Store ソフトページ 日本語非対応ソフトを目立たせる store-jp.nintendo.com

2024/2/26 21:47:38

// ==UserScript==
// @name        My Nintendo Store ソフトページ 日本語非対応ソフトを目立たせる store-jp.nintendo.com
// @namespace   Violentmonkey Scripts
// @match       https://store-jp.nintendo.com/list/software/*
// @grant       none
// @version     1.01
// @author      Als323
// @license MIT
// @description 2024/2/26 21:47:38
// ==/UserScript==
const body = document.querySelector('body');
const product_detail = document.querySelector('.productDetail--contents');
const product_desc = document.querySelector('.productDetail--catchphrase__longDescription');
const no_jp_caution = document.createElement('div');
no_jp_caution.id = 'no_jp_caution'
no_jp_caution.innerHTML = `<h2>日本語に対応していません</h2>
<p>このソフトは日本語に対応しておりません。ご購入される前に、対応言語のリストをご確認ください。</p>
<style>
#no_jp_caution{border: solid 4px #d20313;
margin-top:36px;
padding:15px}
#no_jp_caution h2{font-size: 20px;
    color:#d20313;
    font-weight: 700;
    overflow-wrap: break-word;
    word-break: break-all;}
</style>`

// 日本語非対応タイトルを目立たせる
if (product_desc.textContent.includes('※本作は日本語に対応しておりません')) {
    product_detail.prepend(no_jp_caution);
    product_desc.innerHTML = product_desc.innerHTML.replace('※本作は日本語に対応しておりません<br><br>', '');
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址