Give Url

Gives you website url

目前為 2023-10-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Give Url
// @namespace    http://tampermonkey.net/
// @version      1.0.01
// @description  Gives you website url
// @author       TKTK1234567
// @match        https://*
// @match        *.html
// @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...
})();