Greasy Fork is available in English.

RandomTitle

All Website Random Title

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @license MIT
// @name         RandomTitle
// @version      1.0.0
// @description  All Website Random Title
// @author       XXX
// @match        *://*
// @match        *://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';
    // Wait for load
    window.addEventListener('load', function() {
		var randnumber = Math.round(Math.random()*100);
		document.title = randnumber;
    });
})();