Give Url

Gives you website url

当前为 2023-10-28 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Give Url
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Gives you website url
  6. // @author TKTK1234567
  7. // @match https://*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. addEventListener("keydown", (event) => {
  16. if (event.keyCode === 16) {
  17. const currentUrl = window.location.href;
  18. window.alert("The url is: " + currentUrl)
  19. }
  20. // do something
  21. })();
  22. // Your code here...
  23. })();