Theme Explorer for Shopify

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

Was ist Theme Explorer for Shopify?

Theme Explorer for Shopify ist eine Chrome-Erweiterung, die von Liam Merlyn entwickelt wurde, und ihr Hauptmerkmal ist "Theme Explorer allows you to view important information about the themes installed on your Shopify store.".

Erweiterungsscreenshots

screenshot
screenshot

Theme Explorer for Shopify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Theme Explorer for Shopify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Theme Explorer for Shopify Theme Explorer for Shopify
ID jiapemkfhgejoifinncjnbdkpafhkcnj
Offizielle URL https://chromewebstore.google.com/detail/theme-explorer-for-shopif/jiapemkfhgejoifinncjnbdkpafhkcnj
Beschreibung Theme Explorer allows you to view important information about the themes installed on your Shopify store.
Dateigröße 415 KB
Installationsanzahl 196
Aktuelle Version 1.3.0
Letztes Update 2023-11-20
Veröffentlichungsdatum 2022-07-23
Bewertung 4.88/5 Insgesamt 8 Bewertungen
Entwickler Liam Merlyn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ConduciveMammal/theme-explorer
Hilfeseite URL https://github.com/ConduciveMammal/theme-explorer/issues
Unterstützte Sprachen 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]"
        }
    }
}