Shopify Changelog Generator
This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Vad är Shopify Changelog Generator?
Shopify Changelog Generator är en Chrome-tillägg utvecklad av Bold Commerce, och dess huvudfunktion är "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".
Tilläggsskärmbilder
Ladda ner Shopify Changelog Generator-förlängningens CRX-fil
Ladda ner Shopify Changelog Generator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Shopify Changelog Generator |
ID | ndapgodpammkdiljblbmfepcfaebiegn |
Officiell webbadress | https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn |
Beskrivning | This extension shows a simple changelog of files you changed on your Shopify theme in the console. |
Filstorlek | 82.93 KB |
Antal Installationer | 70 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2018-08-27 |
Publiceringsdatum | 2018-08-27 |
Betyg | 4.00/5 Totalt 3 Betyg |
Utvecklare | Bold Commerce |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://boldcommerce.com/privacy |
Stödda Språk | 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'" } |