ISO 8601 Dates

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);