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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 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'" } |