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."입니다.

확장 프로그램 스크린샷

screenshot

Shopify Changelog Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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'"
}