您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixes the date format if it is still missing or allows you to override the default date format
当前为
// ==UserScript== // @name WME Date Format Fix // @namespace http://www.tomputtemans.com/ // @description Fixes the date format if it is still missing or allows you to override the default date format // @include /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor\/.*$/ // @version 0.0.1 // @grant none // ==/UserScript== (function() { function init() { if (typeof I18n === 'undefined') { log('No internationalisation object found yet, snoozing'); setTimeout(init, 300); return; } fixDateFormat(); } function fixDateFormat() { try { var dateFormat = I18n.translations.en.date.formats.long; var timeFormat = I18n.translations.en.time.formats.long; if (dateFormat && timeFormat) { return; } } catch (e) { // see http://www.cplusplus.com/reference/ctime/strftime/ for the supported format specifiers I18n.translations.en.date.formats = {}; I18n.translations.en.date.formats.long = "%A %d %B, %H:%M (%Z)"; I18n.translations.en.time = {}; I18n.translations.en.time.formats = {}; I18n.translations.en.time.formats.long = "%A %d %B, %H:%M (%Z)"; } } init(); })();