Shopify Changelog Generator
This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Co je Shopify Changelog Generator?
Shopify Changelog Generator je rozšíření Chrome vyvinuté Bold Commerce, a jeho hlavní funkcí je „This extension shows a simple changelog of files you changed on your Shopify theme in the console.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Shopify Changelog Generator
Stáhněte si soubory rozšíření Shopify Changelog Generator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Shopify Changelog Generator |
ID | ndapgodpammkdiljblbmfepcfaebiegn |
Oficiální URL | https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn |
Popis | This extension shows a simple changelog of files you changed on your Shopify theme in the console. |
Velikost souboru | 82.93 KB |
Počet instalací | 70 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2018-08-27 |
Datum Vydání | 2018-08-27 |
Hodnocení | 4.00/5 Celkem 3 Hodnocení |
Vývojář | Bold Commerce |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://boldcommerce.com/privacy |
Podporované Jazyky | 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'" } |