Shopify Theme helper

Capture Shopify Theme Preview link

Shopify Theme helper란 무엇입니까?

Shopify Theme helper은(는) https://appsdart.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture Shopify Theme Preview link"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Shopify Theme helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Just browse on any store and click on the extension icon, it will show all the theme relevant details of the store.

Features :

1. Jump to the Collection or Product Page Admin directly from the store while browsing. You must be logged in to use this feature.

2. Capture the current theme URL to share with others, it will generate relevant URL on the basis of any product or collection page which you’re browsing. -

3. Get rid of the sticky theme preview bar while working with debugger tools. Hide the bar by default for all the stores in just one click.                    

확장 프로그램 기본 정보

이름 Shopify Theme helper Shopify Theme helper
ID palnodkhbhhnaoecdfbifdfpibklccdk
공식 URL https://chromewebstore.google.com/detail/shopify-theme-helper/palnodkhbhhnaoecdfbifdfpibklccdk
설명 Capture Shopify Theme Preview link
파일 크기 206 KB
설치 횟수 578
현재 버전 2.0.2
최근 업데이트 2022-11-04
출시 날짜 2019-12-22
평점 5.00/5 총 10 개의 평점
개발자 https://appsdart.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://appsdart.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shopify Theme helper",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "Capture Shopify Theme Preview link",
    "author": "Appsdart",
    "icons": {
        "16": "images\/themehelper_16x.png",
        "48": "images\/themehelper_48x.png",
        "128": "images\/themehelper_128x.png"
    },
    "browser_action": {
        "default_icon": "images\/themehelper_48x.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage",
        "background",
        "clipboardWrite"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}