您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Converts the time from AM/PM format to 24h format in the Games Done Quick Schedule
// ==UserScript== // @name Games Done Quick Schedule in 24h time format // @name:de Games Done Quick Schedule in 24 Stundenformat // @namespace Neui // @license MIT // @match https://gamesdonequick.com/schedule // @version 0.9.1 // @run-at document-end // @author Neui // @description Converts the time from AM/PM format to 24h format in the Games Done Quick Schedule // @description:de Konvertiert die Zeitangabe vom AM/PM Format zum 24 Stunden Format im Games Done Quick Zeitplan // ==/UserScript== function main(window) { window.moment.updateLocale('en', { longDateFormat : { LT: 'HH:mm', LTS: 'HH:mm:ss', L: 'YYYY-MM-DD', LL: 'D MMMM YYYY', LLL: 'D MMMM YYYY HH:mm', LLLL: 'dddd D MMMM YYYY HH:mm' } }) } var script = document.createElement('script'); script.appendChild(document.createTextNode('('+ main +')(window);')); document.head.appendChild(script);