designr

Inspect CSS styles and save snapshots of web components and designs

designr란 무엇입니까?

designr은(는) Angelina Tsuboi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inspect CSS styles and save snapshots of web components and designs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        designr is an open-source browser extension designed to inspect and save CSS styling on web pages. designr provides information about element styles and save the styles into a palette for later use. designr is a simple and intuitive way for designers and web developers to save CSS references 🎨.

This is a free and simple little plugin that helps you as a web developer, designer, or anyone who wants analyze and save website styling 💜

If you would like to contribute, please visit the GitHub repository:
https://github.com/ANG13T/designr

Additionally, visit my website to learn more about my projects and support my work! angelinatsuboi.net                    

확장 프로그램 기본 정보

이름 designr designr
ID llojjggmiihgebjhofkcedffdfdfeegn
공식 URL https://chromewebstore.google.com/detail/designr/llojjggmiihgebjhofkcedffdfdfeegn
설명 Inspect CSS styles and save snapshots of web components and designs
파일 크기 214 KB
설치 횟수 365
현재 버전 1.0.0
최근 업데이트 2023-03-19
출시 날짜 2023-03-19
평점 5.00/5 총 2 개의 평점
개발자 Angelina Tsuboi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ANG13T/designr
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "designr",
    "version": "1.0.0",
    "description": "Inspect CSS styles and save snapshots of web components and designs",
    "author": "Angelina Tsuboi",
    "homepage_url": "https:\/\/github.com\/ANG13T\/designr",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_title": "designr",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/background.js"
            ]
        }
    ]
}