Shopify theme search (Fast)

Search for files FAST inside your Shopify theme. Stop wasting time searching for text or files within your theme. You can now…

什么是Shopify theme search (Fast)?

Shopify theme search (Fast)是由Ty Chapman开发的Chrome扩展程序,该扩展的主要功能是“Search for files FAST inside your Shopify theme. Stop wasting time searching for text or files within your theme. You can now…”。

扩展截图

screenshot

下载Shopify theme search (Fast)扩展crx文件

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

扩展使用说明

                        Search for files FAST inside your Shopify theme. 

Stop wasting time searching for text or files within your theme.
You can now search for any specific line of text or code instantly within theme files.

User friendly tool for merchants and developers.

How to use:
1. Install plugin with one click (works automatically) 
2. Navigate to theme code: Online Store > Themes > … > edit Code
3. Type text you want to find in the instant search bar at top of editor and click search

(Regex and case sensitive included.)

Made by Ty Chapman                    

扩展基本信息

名称 Shopify theme search (Fast) Shopify theme search (Fast)
ID kehfecdknjlanbagfdianfdmochlaloe
官方URL https://chromewebstore.google.com/detail/shopify-theme-search-fast/kehfecdknjlanbagfdianfdmochlaloe
简介 Search for files FAST inside your Shopify theme. Stop wasting time searching for text or files within your theme. You can now…
文件大小 271 KB
安装次数 2,210
当前版本 1.2.3
更新时间 2023-09-21
上架时间 2022-12-05
评分 3.81/5 共16次评分
开发者 Ty Chapman
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shopify theme search (Fast)",
    "short_name": "Shopify theme search (Fast)",
    "version": "1.2.3",
    "description": "",
    "action": {
        "default_popup": "index.html?#\/popup",
        "default_title": "Shopify theme search (Fast)",
        "default_icon": {
            "16": "assets\/icon-16.png",
            "24": "assets\/icon-24.png",
            "34": "assets\/icon-34.png",
            "128": "assets\/icon-128.png"
        }
    },
    "options_page": "index.html?#\/options",
    "content_scripts": [
        {
            "js": [
                "runtime.js",
                "polyfills.js",
                "vendor.js",
                "main.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.shopify.com\/*",
                "https:\/\/*.myshopify.com\/*",
                "https:\/\/online-store-web.shopifyapps.com\/themes*"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}