Shopify Changelog Generator

This extension shows a simple changelog of files you changed on your Shopify theme in the console.

Shopify Changelog Generatorとは何ですか?

Shopify Changelog GeneratorはBold Commerceによって開発されたChromeの拡張機能で、その主な機能は「This extension shows a simple changelog of files you changed on your Shopify theme in the console.」です。

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

screenshot

Shopify Changelog Generator拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Shopify Changelog Generator generates a changelog showing the theme information and files where changes were made.  This should make it easier to send changelogs to any customers requesting which files were modified.                    

拡張機能の基本情報

名前 Shopify Changelog Generator Shopify Changelog Generator
ID ndapgodpammkdiljblbmfepcfaebiegn
公式URL https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn
説明 This extension shows a simple changelog of files you changed on your Shopify theme in the console.
ファイルサイズ 82.93 KB
インストール数 70
現在のバージョン 1.1.1
最終更新日 2018-08-27
公開日 2018-08-27
評価 4.00/5 合計 3 レビュー
開発者 Bold Commerce
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://boldcommerce.com/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shopify Changelog Generator",
    "description": "This extension shows a simple changelog of files you changed on your Shopify theme in the console.",
    "version": "1.1.1",
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Shopify Changelog Generator",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.myshopify.com\/admin\/themes\/*",
                "https:\/\/*.myshopify.com\/admin\/themes\/*",
                "https:\/\/*.zendesk.com\/*"
            ],
            "js": [
                "frontend.js"
            ],
            "runat": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "\/client.js",
        "\/frontend.js",
        "\/zendesk_client.js"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.zendesk.com\/*"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}