Shopify Changelog Generator
This extension shows a simple changelog of files you changed on your Shopify theme in the console.
O que é Shopify Changelog Generator?
Shopify Changelog Generator é uma extensão do Chrome desenvolvida por Bold Commerce, e sua principal característica é "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Shopify Changelog Generator
Baixe arquivos de extensão Shopify Changelog Generator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Shopify Changelog Generator |
ID | ndapgodpammkdiljblbmfepcfaebiegn |
URL Oficial | https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn |
Descrição | This extension shows a simple changelog of files you changed on your Shopify theme in the console. |
Tamanho do Arquivo | 82.93 KB |
Contagem de Instalações | 70 |
Versão Atual | 1.1.1 |
Última Atualização | 2018-08-27 |
Data de Publicação | 2018-08-27 |
Classificação | 4.00/5 Total de 3 Avaliações |
Desenvolvedor | Bold Commerce |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://boldcommerce.com/privacy |
Idiomas Suportados | 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'" } |