Zeplin Popout Tool

Zeplin Popout Tool in Chrome

Wat is Zeplin Popout Tool?

Zeplin Popout Tool is een Chrome-extensie ontwikkeld door Zeplin, en de belangrijkste functie is "Zeplin Popout Tool in Chrome".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Zeplin Popout Tool

Download Zeplin Popout Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Zeplin Popout tool allows you to compare your code output with Zeplin screens for better design-development workflow.                    

Basisinformatie over de Extensie

Naam Zeplin Popout Tool Zeplin Popout Tool
ID oinclimgcibkeglgekdbolhdbppmphhe
Officiële URL https://chromewebstore.google.com/detail/zeplin-popout-tool/oinclimgcibkeglgekdbolhdbppmphhe
Beschrijving Zeplin Popout Tool in Chrome
Bestandsgrootte 24.43 KB
Aantal Installaties 497
Huidige Versie 1.1.0
Laatst Bijgewerkt 2023-02-07
Publicatiedatum 2023-01-19
Beoordeling 5.00/5 Totaal 16 Beoordelingen
Ontwikkelaar Zeplin
Betalingswijze free
Extensiewebsite https://github.com/mertkahyaoglu/zeplin-popout-extension
URL van de Privacybeleid Pagina https://zeplin.io/privacy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zeplin Popout Tool",
    "version": "1.1.0",
    "manifest_version": 3,
    "description": "Zeplin Popout Tool in Chrome",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "img\/icSolid.png",
                "img\/icTransparent.png"
            ]
        }
    ]
}