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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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'" } |