Zeplin Popout Tool

Zeplin Popout Tool in Chrome

Zeplin Popout Toolとは何ですか?

Zeplin Popout ToolはZeplinによって開発されたChromeの拡張機能で、その主な機能は「Zeplin Popout Tool in Chrome」です。

拡張機能のスクリーンショット

screenshot
screenshot

Zeplin Popout Tool拡張機能のCRXファイルをダウンロード

Zeplin Popout Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Zeplin Popout Tool Zeplin Popout Tool
ID oinclimgcibkeglgekdbolhdbppmphhe
公式URL https://chromewebstore.google.com/detail/zeplin-popout-tool/oinclimgcibkeglgekdbolhdbppmphhe
説明 Zeplin Popout Tool in Chrome
ファイルサイズ 24.43 KB
インストール数 497
現在のバージョン 1.1.0
最終更新日 2023-02-07
公開日 2023-01-19
評価 5.00/5 合計 16 レビュー
開発者 Zeplin
支払い方法 free
拡張機能のウェブサイト https://github.com/mertkahyaoglu/zeplin-popout-extension
プライバシーポリシーページのURL https://zeplin.io/privacy
対応言語 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"
            ]
        }
    ]
}