Skip to content

Instantly share code, notes, and snippets.

@Vresod
Created October 10, 2018 18:51
Show Gist options
  • Save Vresod/07c00e6b0bc3590bacae954ec162e70b to your computer and use it in GitHub Desktop.
Save Vresod/07c00e6b0bc3590bacae954ec162e70b to your computer and use it in GitHub Desktop.
// ==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