UI Design

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

UI Design란 무엇입니까?

UI Design은(는) danielvwilkinson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

UI Design 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 UI Design UI Design
ID foelobhaomlkojekpgenegcfedbgemej
공식 URL https://chromewebstore.google.com/detail/ui-design/foelobhaomlkojekpgenegcfedbgemej
설명 UI Design gives you the ability to edit a web page's CSS. Test out new designs, styles and images without coding
파일 크기 26.09 KB
설치 횟수 1,243
현재 버전 1
최근 업데이트 2020-02-20
출시 날짜 2020-02-19
평점 5.00/5 총 3 개의 평점
개발자 danielvwilkinson
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}