ISO 8601 Dates

Display US dates in the ISO 8601 YYYY-MM-DD format

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name           ISO 8601 Dates
// @description    Display US dates in the ISO 8601 YYYY-MM-DD format
// @author         chocolateboy
// @copyright      chocolateboy
// @version        1.2.2
// @namespace      https://github.com/chocolateboy/userscripts
// @license        GPL: http://www.gnu.org/copyleft/gpl.html
// @exclude        *
// @grant          GM_registerMenuCommand
// ==/UserScript==

var XPATH = '//body//text()';
var DATE  = new RegExp(
      '(?:\\b(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[01])-(\\d{4}|\\d{2})\\b(?!-))'
    + '|'
    + '(?:\\b(0[1-9]|1[0-2])/(0[1-9]|[12][0-9]|3[01])/(\\d{4}|\\d{2})\\b(?!/))',
    'g'
);

//          Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
var days = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];

function leap_year (year) {
    if ((year % 400) === 0) {           // multiples of 400 are leap years
        return true;
    } else if ((year % 100) === 0) {    // the remaining multiples of 100 are not leap years
        return false;
    } else if ((year % 4) === 0) {      // the remaining multiples of 4 are leap years
        return true;
    } else {                           // the rest are common years
        return false;
    }
}

// https://bugzilla.mozilla.org/show_bug.cgi?id=392378
function replace (match, m1, d1, y1, m2, d2, y2, offset, string) {
    var year  = y1 || y2; // depending on the above, non-matches are either empty or undefined, both of which are false
    var month = m1 || m2;
    var day   = d1 || d2;

    // manual negative look-behind: see: http://blog.stevenlevithan.com/archives/mimic-lookbehind-javascript
    if (offset > 0) {
        var prefix = string[offset - 1];

        if ((prefix === '-') || (prefix === '/')) {
            return match;
        }
    }

    if (day > days[month - 1]) {
        return match;
    }

    if (year.length === 2) {
        // Internet Founding Fathers, forgive us. From the epoch to 1999, we knew not what to do...
        year = (((year >= 70) && (year <= 99)) ? '19' : '20') + year;
    }

    if ((month === '02') && (day === '29') && !leap_year(year)) {
        return match;
    }

    return year + '-' + month + '-' + day;
}

function fix_dates () {
    var nodes = document.evaluate(XPATH, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);

    for (var i = 0; i < nodes.snapshotLength; ++i) {
        var text = nodes.snapshotItem(i);
        text.data = text.data.replace(DATE, replace);
    }
}

// add a menu command for that pesky, hard-to-reach, lazily-loaded content
GM_registerMenuCommand('ISO 8601 Dates', fix_dates);

// run this script as late as possible to handle dynamically loaded content e.g. cracked.com
window.addEventListener('load', fix_dates, false);