Íslendingabók

breyta ári

目前為 2025-04-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Íslendingabók
// @namespace    http://tampermonkey.net/
// @version      9.0
// @description  breyta ári
// @author       You
// @match        https://islendingabok.is/individual
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// @license MIT
// ==/UserScript==

function changeContent () {
    document.body.innerHTML = document.body.innerHTML.replace(/2009/g, '2006');

}
window.onload = changeContent ;