Theme Explorer for Shopify

Theme Explorer allows you to view important information about the themes installed on your Shopify store.

什么是Theme Explorer for Shopify?

Theme Explorer for Shopify是由Liam Merlyn开发的Chrome扩展程序,该扩展的主要功能是“Theme Explorer allows you to view important information about the themes installed on your Shopify store.”。

扩展截图

screenshot
screenshot

下载Theme Explorer for Shopify扩展crx文件

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

扩展使用说明

                        Explore your Shopify store's themes and their details. This extension provides information such as the theme's ID, updated/created dates and the theme name. It also provides links to quickly access the theme's JSON, Theme Customiser and code editor.

On Shopify storefronts, use the extension to quickly view the store's live theme name, and access important details, such as the Theme ID, Theme Preview URL and Theme Editor URL.                    

扩展基本信息

名称 Theme Explorer for Shopify Theme Explorer for Shopify
ID jiapemkfhgejoifinncjnbdkpafhkcnj
官方URL https://chromewebstore.google.com/detail/theme-explorer-for-shopif/jiapemkfhgejoifinncjnbdkpafhkcnj
简介 Theme Explorer allows you to view important information about the themes installed on your Shopify store.
文件大小 415 KB
安装次数 196
当前版本 1.3.0
更新时间 2023-11-20
上架时间 2022-07-23
评分 4.88/5 共8次评分
开发者 Liam Merlyn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ConduciveMammal/theme-explorer
帮助页面URL https://github.com/ConduciveMammal/theme-explorer/issues
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Theme Explorer allows you to view important information about the themes installed on your Shopify store.",
    "version": "1.3.0",
    "manifest_version": 3,
    "name": "Theme Explorer for Shopify",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon48.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.bundle.js",
                "injectScript.bundle.js",
                "icon128.png",
                "icon48.png",
                "icon16.png",
                "nunito.woff2",
                "nunito-italic.woff2"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}