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 파일 다운로드

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

확장 프로그램 사용 설명서

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