Gives you website url
目前為
// ==UserScript==
// @name Give Url
// @namespace http://tampermonkey.net/
// @version 1
// @description Gives you website url
// @author TKTK1234567
// @match https://*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
addEventListener("keydown", (event) => {
if (event.keyCode === 16) {
const currentUrl = window.location.href;
window.alert("The url is: " + currentUrl)
}
// do something
})();
// Your code here...
})();