UI Design

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

Vad är UI Design?

UI Design är en Chrome-tillägg utvecklad av danielvwilkinson, och dess huvudfunktion är "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner UI Design-förlängningens CRX-fil

Ladda ner UI Design-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn UI Design UI Design
ID foelobhaomlkojekpgenegcfedbgemej
Officiell webbadress https://chromewebstore.google.com/detail/ui-design/foelobhaomlkojekpgenegcfedbgemej
Beskrivning UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding
Filstorlek 26.09 KB
Antal Installationer 1,243
Aktuell Version 1
Senast Uppdaterad 2020-02-20
Publiceringsdatum 2020-02-19
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare danielvwilkinson
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}