UI Design

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

Qu'est-ce que UI Design ?

UI Design est une extension Chrome développée par danielvwilkinson, et sa fonction principale est "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension UI Design

Téléchargez les fichiers d'extension UI Design au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom UI Design UI Design
ID foelobhaomlkojekpgenegcfedbgemej
URL Officiel https://chromewebstore.google.com/detail/ui-design/foelobhaomlkojekpgenegcfedbgemej
Description UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding
Taille du Fichier 26.09 KB
Nombre d'Installations 1,243
Version Actuelle 1
Dernière Mise à Jour 2020-02-20
Date de Publication 2020-02-19
Évaluation 5.00/5 Total 3 Évaluations
Développeur danielvwilkinson
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}