UXtweak

Uxtweak's browser extension for website usability testing studies

Что такое UXtweak?

UXtweak - это расширение Chrome, разработанное https://uxtweak.com, и его основная функция - "Uxtweak's browser extension for website usability testing studies".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения UXtweak

Скачайте файлы расширений UXtweak в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        UXtweak is a powerful UX research platform offering tools for improving usability of websites and mobile apps, from prototypes to production.

Via the UXtweak extension, you can provide the web owners with useful insights on how you interact with their websites. These insights can then be used to make the website better and easier to use for you!

----------------------------------------------------------

What is website usability testing?

Website usability testing is a method for evaluating how intuitive and easy to use a website is for its users, by collecting data on how they solve tasks and interact with the website during an online test. Users are notified about the nature of all collected data, and are asked to give explicit consent prior to entering the study.

----------------------------------------------------------

How to use the extension?

1.  Install the extension into your web browser.
2.  Visit the address of the Website Testing study provided by the study conductor.
3.  The extension will record your interaction with the website (in the form of raw interaction 
     data, e.g. clicks, scrolls, and mouse movements).

----------------------------------------------------------

Which data is being collected?

UXtweak's Chrome extension collects data ONLY on the tested website.

Based on the study settings, and the level of consent the user has given, UXtweak can collect the following data:
⦁	User's interaction data from the tested website (mouse and/or keyboard events, such as the 
        cursor's location on the screen)
⦁	Metadata regarding the browser, operating system, device, and approximate location
⦁	IP address (special consent required for EU residents) - optional
⦁	User's identification on the UXtweak platform (special consent required for EU residents) - 
        optional
⦁	Form inputs, such as e-mail addresses and phone numbers (special consent required for EU 
        residents) - optional
⦁	Audio recording (special consent required) - optional

UXtweak takes users' privacy very seriously and is fully compliant with the GDPR. For more information, please visit the related section on the UXtweak's website here: https://www.uxtweak.com/legal/gdpr-compliance

----------------------------------------------------------

Which permissions does the extension ask for?

⦁	Storage permission - to store data about the study the user is currently participating in.
⦁	Tabs permission - to determine whether the user is currently viewing the tab with the study, 
        and to be able to collect the data as well as display the Website Testing Task panel on the 
        website being tested.
⦁	Scripting permission - to inject the recording code snippet into the website being tested.
⦁	Host permission – to allow a website to be tested as part of a Website Testing study (as the 
        extension cannot determine in advance which site is going to be tested).

----------------------------------------------------------

Changelog:
•	1.1.2 – Prevent browser from suspending the extension during active study
•	1.1.1 – Prevent injection of content script to frames multiple times
•	1.1.0 – Support for recording of iframes added dynamically
•	1.0.2 – Support for recording of cross-origin iframes
•	1.0.1 – Update meta description
•	1.0.0 – First public release                    

Основная информация о расширении

Название UXtweak UXtweak
ID dagniddgipkffcehffkjgbdobhldacgl
Официальный URL https://chromewebstore.google.com/detail/uxtweak/dagniddgipkffcehffkjgbdobhldacgl
Описание Uxtweak's browser extension for website usability testing studies
Размер файла 142 KB
Количество установок 885
Текущая Версия 1.1.2
Последнее Обновление 2023-10-20
Дата публикации 2022-05-18
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://uxtweak.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.uxtweak.com
URL страницы помощи https://www.uxtweak.com/help
URL страницы политики конфиденциальности https://www.uxtweak.com/help/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UXtweak",
    "description": "Uxtweak's browser extension for website usability testing studies",
    "version": "1.1.2",
    "manifest_version": 3,
    "icons": {
        "16": "favicon.7c22d556.png",
        "32": "favicon.fabdbe17.png",
        "48": "favicon.b42705e5.png",
        "128": "favicon.3579ba03.png"
    },
    "action": {
        "default_title": "UXtweak"
    },
    "background": {
        "service_worker": "background.f386f868.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/study.uxtweak.com\/*"
            ],
            "js": [
                "content-script.43ada03b.js"
            ],
            "run_at": "document_start",
            "css": []
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "collector.js",
                "*.*.*.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}