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
官方網址 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
電子郵箱 [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'"
}