Shopify Changelog Generator
This extension shows a simple changelog of files you changed on your Shopify theme in the console.
什么是Shopify Changelog Generator?
Shopify Changelog Generator是由Bold Commerce开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a simple changelog of files you changed on your Shopify theme in the console.”。
扩展截图
下载Shopify Changelog Generator扩展crx文件
下载Shopify Changelog Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Shopify Changelog Generator |
ID | ndapgodpammkdiljblbmfepcfaebiegn |
官方URL | https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn |
简介 | This extension shows a simple changelog of files you changed on your Shopify theme in the console. |
文件大小 | 82.93 KB |
安装次数 | 70 |
当前版本 | 1.1.1 |
更新时间 | 2018-08-27 |
上架时间 | 2018-08-27 |
评分 | 4.00/5 共3次评分 |
开发者 | Bold Commerce |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://boldcommerce.com/privacy |
支持的语言 | 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'" } |