Prevent homograph attacks.
目前為
// ==UserScript==
// @name Punycode detector
// @namespace https://github.com/Shifterovich
// @version 1.0
// @description Prevent homograph attacks.
// @author Samuel Shifterovich (https://github.com/Shifterovich)
// @include /xn--/
// @grant GM_notification
// ==/UserScript==
if (window.location.hostname.indexOf("xn--") != -1){
GM_notification("This website has Punycode in its domain name!", "PUNYCODE DETECTED!");
}