Timesink
Auto-close time sink websites
Inspired by:
wanted: browser extension which, if an imgur or tvtropes link is clicked, automatically closes the tab after a set time.
— Dust Interpolator (@mediapathic) [January 8, 2016](https://twitter.com/mediapathic/status/685291953521471488)
Cut this code into a file named timesink.user.js
(the name is important) and drag the file into a tab showing chrome://extensions
. You might have to turn on developer mode.
// ==UserScript== // @name Close those time sink websites // @grant GM_addStyle // @match *://tvtropes.org/* // @match *://imgur.com/* // @match *://*.imgur.com/* // ==/UserScript== // setTimeout (window.close, 5000);
Last update:
November 8, 2020