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文件

下载Shopify Theme helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}