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 - это расширение Chrome, разработанное Bold Commerce, и его основная функция - "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".
Снимки экрана расширения
Скачать файл CRX расширения Shopify Changelog Generator
Скачайте файлы расширений 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. Основная информация о расширении
| Название | |
| 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'"
} | |