The Drunk User

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

The Drunk User क्या है?

The Drunk User simo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take a look at your website with the eyes of a drunk."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में The Drunk User एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम The Drunk User The Drunk User
ID gkjnmmobmoagoidnoanecnagcbbfdken
आधिकारिक URL https://chrome.google.com/webstore/detail/the-drunk-user/gkjnmmobmoagoidnoanecnagcbbfdken
विवरण Take a look at your website with the eyes of a drunk.
फ़ाइल का आकार 10.41 KB
स्थापना संख्या 78
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2017-01-12
प्रकाशन तिथि 2017-01-12
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर simo
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://uxbeasts.com/?ref=App=email
समर्थित भाषाएँ 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"
    }
}