The Drunk User

Take a look at your website with the eyes of a drunk.

Cos'è The Drunk User?

The Drunk User è un'estensione di Chrome sviluppata da simo, e la sua funzione principale è "Take a look at your website with the eyes of a drunk.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione The Drunk User

Scarica i file di estensione The Drunk User in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A user should be able to look at a page and instantly recognize what is the path he is supposed to take. 

So, here is a question for you:

Can a user go through your conversion funnel without being able to read a single word on your website?

In most cases, no.

Very often there is a secondary element on the website that happens to pop-out more then the call-to-actions, and distract the user from the awesome conversion path you designed.

There is an easy way to check if this is the case:

Become a drunk user.

With a simple click on the app's icon, you will be able to browse through any website with a blurry vision and test the UX design of any website.

Why is this different than taking a screenshot and applying a gaussian blur?

- It's faster
- You can navigate the full website without taking dozens of screenshots
- You can click on any element and actually go through the conversion funnel
- You can activate it and deactivate it at any time with 1 click


Once you find some elements on you website for which you want to improve the visual hierarchy, here are a few things you might want to play around with:

Size
Contrast
Colour
Shape
Position
Whitespace and padding


Developers: Simone Magazzù & Giacomo Grazioli


Mentions:

As far as I can tell, the phrase The User is Drunk can originally be attributed to Will Dayble.                    

Informazioni di Base sull'Estensione

Nome The Drunk User The Drunk User
ID gkjnmmobmoagoidnoanecnagcbbfdken
URL Ufficiale https://chrome.google.com/webstore/detail/the-drunk-user/gkjnmmobmoagoidnoanecnagcbbfdken
Descrizione Take a look at your website with the eyes of a drunk.
Dimensione del File 10.41 KB
Conteggio Installazioni 78
Versione Corrente 0.1.0
Ultimo Aggiornamento 2017-01-12
Data di Pubblicazione 2017-01-12
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore simo
Tipo di Pagamento free
Sito Web dell'Estensione http://uxbeasts.com/?ref=App=email
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "The Drunk User",
    "version": "0.1.0",
    "description": "Take a look at your website with the eyes of a drunk.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "sober.png",
        "default_title": "The Drunk User"
    },
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "background",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "48": "sober.png",
        "32": "sober.png"
    }
}