您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Log in to DMM
// ==UserScript== // @name DMM Kurofune // @namespace https://greasyfork.org/zh-TW/users/1338298-jeff-huang // @version 2025-03-08_17h36m // @description Log in to DMM // @author hangjeff // @match https://*.dmm.co.jp/* // @match https://*.dmm.com/* // @require https://code.jquery.com/jquery-3.7.1.slim.min.js // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... const Target_Name = 'ckcy_remedied_check'; let expires = new Date(); expires.setFullYear(expires.getFullYear() + 100); // 100 years later console.log("Expires: " + expires.toUTCString()); document.cookie = Target_Name + "=" + "ec_mrnhbtk" + "; expires=" + expires.toUTCString() + "; path=/; domain=.dmm.com; secure;"; document.cookie = Target_Name + "=" + "ec_mrnhbtk" + "; expires=" + expires.toUTCString() + "; path=/; domain=.dmm.co.jp; secure;"; })();