Shopify Changelog Generator

This extension shows a simple changelog of files you changed on your Shopify theme in the console.

Shopify Changelog Generator là gì?

Shopify Changelog Generator là một tiện ích mở rộng Chrome được phát triển bởi Bold Commerce, và tính năng chính của nó là "This extension shows a simple changelog of files you changed on your Shopify theme in the console.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shopify Changelog Generator

Tải xuống các tệp mở rộng Shopify Changelog Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shopify Changelog Generator Shopify Changelog Generator
ID ndapgodpammkdiljblbmfepcfaebiegn
URL Chính Thức https://chromewebstore.google.com/detail/shopify-changelog-generat/ndapgodpammkdiljblbmfepcfaebiegn
Mô tả This extension shows a simple changelog of files you changed on your Shopify theme in the console.
Kích Thước Tệp 82.93 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2018-08-27
Ngày Phát Hành 2018-08-27
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Bold Commerce
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://boldcommerce.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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'"
}