Shopify Changelog Generator

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

Wat is Shopify Changelog Generator?

Shopify Changelog Generator is een Chrome-extensie ontwikkeld door Bold Commerce, en de belangrijkste functie is "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Shopify Changelog Generator

Download Shopify Changelog Generator-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

                        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.                    

Basisinformatie over de Extensie

Naam Shopify Changelog Generator Shopify Changelog Generator
ID ndapgodpammkdiljblbmfepcfaebiegn
Officiële URL https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn
Beschrijving This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Bestandsgrootte 82.93 KB
Aantal Installaties 70
Huidige Versie 1.1.1
Laatst Bijgewerkt 2018-08-27
Publicatiedatum 2018-08-27
Beoordeling 4.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Bold Commerce
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://boldcommerce.com/privacy
Ondersteunde Talen 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'"
}