UI Design

UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding

Was ist UI Design?

UI Design ist eine Chrome-Erweiterung, die von danielvwilkinson entwickelt wurde, und ihr Hauptmerkmal ist "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

UI Design-Erweiterungs-CRX-Datei herunterladen

Laden Sie UI Design-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Live edit a web page's CSS and styling without touching a line of code.

Quickly try out new images using the Unsplash API, test colors, gradients and fonts or use it as a learning tool to figure out how things like padding and margin affects the layout of your page.

As a developer you can quickly test changes without going into the console or uploading a new stylesheet.

Designers you can do what you do best and try out new design ideas without having to learn CSS.                    

Grundlegende Informationen zur Erweiterung

Name UI Design UI Design
ID foelobhaomlkojekpgenegcfedbgemej
Offizielle URL https://chromewebstore.google.com/detail/ui-design/foelobhaomlkojekpgenegcfedbgemej
Beschreibung UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding
Dateigröße 26.09 KB
Installationsanzahl 1,243
Aktuelle Version 1
Letztes Update 2020-02-20
Veröffentlichungsdatum 2020-02-19
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler danielvwilkinson
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UI Design",
    "short_name": "UI Design",
    "version": "1",
    "manifest_version": 2,
    "description": "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding",
    "content_security_policy": "default-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "ui16.png",
        "48": "ui48.png",
        "128": "ui128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/style.css"
            ]
        }
    ],
    "browser_action": [],
    "permissions": [
        "activeTab"
    ]
}