Shopify Changelog Generator

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

What is Shopify Changelog Generator?

Shopify Changelog Generator is a Chrome extension developed by Bold Commerce, and its main feature is "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".

Extension Screenshots

screenshot

Download Shopify Changelog Generator Extension CRX File

Download Shopify Changelog Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Shopify Changelog Generator Shopify Changelog Generator
ID ndapgodpammkdiljblbmfepcfaebiegn
Official URL https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn
Description This extension shows a simple changelog of files you changed on your Shopify theme in the console.
File Size 82.93 KB
Installation Count 70
Current Version 1.1.1
Last Updated 2018-08-27
Publish Date 2018-08-27
Rating 4.00/5 Total 3 Ratings
Developer Bold Commerce
Email [email protected]
Payment Type free
Privacy Policy Page URL https://boldcommerce.com/privacy
Supported Languages 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'"
}