Created
October 10, 2018 18:51
-
-
Save Vresod/07c00e6b0bc3590bacae954ec162e70b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Tab Titles | |
// @namespace https://vresod.github.io | |
// @version 1.0 | |
// @description Tab Titles is the not so perfect solution to giving custom title to tabs! | |
// @author Vresod | |
// @include * | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var x = confirm('Would you like to change the tab title?') | |
if (x == true){ | |
var doctitle = prompt('To what?') | |
setInterval(function(){ | |
document.title = doctitle | |
}, 2) | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment