designr

Inspect CSS styles and save snapshots of web components and designs

Co je designr?

designr je rozšíření Chrome vyvinuté Angelina Tsuboi, a jeho hlavní funkcí je „Inspect CSS styles and save snapshots of web components and designs“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření designr

Stáhněte si soubory rozšíření designr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název designr designr
ID llojjggmiihgebjhofkcedffdfdfeegn
Oficiální URL https://chromewebstore.google.com/detail/designr/llojjggmiihgebjhofkcedffdfdfeegn
Popis Inspect CSS styles and save snapshots of web components and designs
Velikost souboru 214 KB
Počet instalací 365
Aktuální Verze 1.0.0
Poslední Aktualizace 2023-03-19
Datum Vydání 2023-03-19
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Angelina Tsuboi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ANG13T/designr
Podporované Jazyky 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"
            ]
        }
    ]
}