Ask for name

Asks for your name when you open a website!

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

Advertisement:

// ==UserScript==
// @name         Ask for name
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Asks for your name when you open a website!
// @author       Arden Xie
// @match        https://*
// @match        http://*
// @grant        none
// @copyright    2016 Arden Xie
// @icon         https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ4rWlNnlWwhYwlun4-QLdt3BpUnhz921Dj1Q1iX_QHUBGRBh7Q8L7BEQ
// ==/UserScript==

(function() {
    var yourname = prompt("What is your name?");
    if (yourname != null){
        alert("Hello, " + yourname);
    } else{
        alert("Actually enter a name, please");
    }
})();