Anti-Hack

Don't let Others Acess Your Personal Things!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Anti-Hack
// @namespace    https://google.com/
// @version      0.1
// @description  Don't let Others Acess Your Personal Things!
// @author       bigfoot
// @icon         https://thumbs.dreamstime.com/b/approved-icon-profile-verification-accept-badge-quality-check-mark-sticker-tick-vector-illustration-136617444.jpg
// @grant        none
// @match        https://outlook.office.com/mail/inbox
// @match        https://www.d11.org/
// @match         https://outlook.office.com/mail/


// ==/UserScript==

//CUSTOMIZE
var username = "";
var yourName = "Hecker";
/*Change the @match section to run on different urls/websites*/
//***Don't tuch code below or the script won't work***

let person = prompt("Please enter your username","");
let text;

if(person != username){
    alert("Get tf off my computer!");
    //location.assign('https://www.javascripttutorial.net/');
    window.onload = function() {
        location.href = "";
    }
}
if (person == username) {
    alert("Hello " + yourName + "! How are you today?");
}