Shopify Theme File Search by EZFY

Made by ezfycode.com Easily find any text within the files of any of your Shopify themes. Regex support included! Do you ever…

Shopify Theme File Search by EZFY란 무엇입니까?

Shopify Theme File Search by EZFY은(는) Diego Fortes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Made by ezfycode.com Easily find any text within the files of any of your Shopify themes. Regex support included! Do you ever…"입니다.

확장 프로그램 스크린샷

Shopify Theme File Search by EZFY 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Made by ezfycode.com

Easily find any text within the files of any of your Shopify themes. Regex support included! 

Do you ever wonder where a specific line of text is located inside the dozens of files of your theme? Then this extension is most definitely for you. 

Whether you're a merchant or a developer a global search function for our themes can be very helpful and save a lot of time. This is exactly what this extension do. 

Features:
- Search for any text inside every single file of your theme
- Fast search
- User friendly interface
- Regex friendly

Usage:
1. Login to your Shopify store;
2. Navigate to online store > themes > actions > edit code;
3. You'll notice a text box load right above your theme editor;
4. Type in any text you wish to locate;
5. Wait for a few seconds and the app will notify you whether the text was found or not.                    

확장 프로그램 기본 정보

이름 Shopify Theme File Search by EZFY Shopify Theme File Search by EZFY
ID mhchmhfecfdpaifljcfebnlaiaphfkmb
공식 URL https://chromewebstore.google.com/detail/shopify-theme-file-search/mhchmhfecfdpaifljcfebnlaiaphfkmb
설명 Made by ezfycode.com Easily find any text within the files of any of your Shopify themes. Regex support included! Do you ever…
파일 크기 201 KB
설치 횟수 32,167
현재 버전 2.5.0
최근 업데이트 2023-10-11
출시 날짜 2020-11-02
평점 3.72/5 총 53 개의 평점
개발자 Diego Fortes
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ezfycode.com/
도움말 페이지 URL https://ezfycode.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.5.0",
    "name": "Shopify Theme File Search by EZFY",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myshopify.com\/admin\/*",
                "https:\/\/admin.shopify.com\/store\/*",
                "http:\/\/admin.shopify.com\/store"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "ezfy-logo.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}