NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Copy Page Title // @version 1.0.0 // @description Copy the page title to clipboard // @include * // @run-at context-menu // @noframes // @grant GM_setClipboard // @grant GM_notification // ==/UserScript== (function() { 'use strict'; GM_setClipboard(document.title, {type:'text',mimetype:'text/plain'}); GM_notification('Copied!', 'Copied "'+document.title+'" to clipboard successfully."', 'https://i.imgur.com/RWGRA5s.png'); })();