Shopify Changelog Generator
This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Cos'è Shopify Changelog Generator?
Shopify Changelog Generator è un'estensione di Chrome sviluppata da Bold Commerce, e la sua funzione principale è "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Shopify Changelog Generator
Scarica i file di estensione Shopify Changelog Generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Shopify Changelog Generator |
ID | ndapgodpammkdiljblbmfepcfaebiegn |
URL Ufficiale | https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn |
Descrizione | This extension shows a simple changelog of files you changed on your Shopify theme in the console. |
Dimensione del File | 82.93 KB |
Conteggio Installazioni | 70 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2018-08-27 |
Data di Pubblicazione | 2018-08-27 |
Valutazione | 4.00/5 Totale 3 Valutazioni |
Sviluppatore | Bold Commerce |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://boldcommerce.com/privacy |
Lingue Supportate | 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'" } |