Visual Design Quick Tests

Easily apply filters to test the visual design of sites or files

Co to jest Visual Design Quick Tests?

Visual Design Quick Tests to rozszerzenie Chrome opracowane przez Adam Ruf, a jego główną funkcją jest „Easily apply filters to test the visual design of sites or files”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Visual Design Quick Tests

Pobierz pliki rozszerzeń Visual Design Quick Tests w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        👋 Designers, save time with Visual Design Quick Tests (VDQT). You can quickly test designs for visual contrast, balance, harmony, and more. You can also test the visual accessibility of your designs by simulating common forms of color blindness.                    

Podstawowe informacje o rozszerzeniu

Nazwa Visual Design Quick Tests Visual Design Quick Tests
ID kdkdbeinbohlllbkgammmkienajaiimn
Oficjalny URL https://chromewebstore.google.com/detail/visual-design-quick-tests/kdkdbeinbohlllbkgammmkienajaiimn
Opis Easily apply filters to test the visual design of sites or files
Rozmiar pliku 180 KB
Liczba instalacji 52
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2019-02-24
Data Publikacji 2019-02-24
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper Adam Ruf
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.0.4",
    "description": "__MSG_extDescription__",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_title": "Visual Design Quick Tests",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "default_locale": "en",
    "web_accessible_resources": [
        "img\/*"
    ]
}