Liquify - Shopify Code Search & Editor

Code Search / Themes / Editor Enhancements

Liquify - Shopify Code Search & Editorとは何ですか?

Liquify - Shopify Code Search & EditorはLuke Cによって開発されたChromeの拡張機能で、その主な機能は「Code Search / Themes / Editor Enhancements」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Liquify - Shopify Code Search & Editor拡張機能のCRXファイルをダウンロード

Liquify - Shopify Code Search & Editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Liquify is a browser extension to enhance the Shopify theme code editor and add some quality of life functions that a traditional code editor would have. It also provides some storefront shortcuts, such as opening the theme or code editor for the current theme being previewed, or opening the admin page for the current product/collection/blog/page being viewed.

Features:
-- Themes/Icons -- Currently a VSCode/Atom theme, tabs/files/autocomplete suggestions will also show an icon for the type of file/suggestion.

-- Tabs -- Allow drag and drop tabs, stack tabs instead of scroll

-- Enhanced search -- This will search both file names and file contents for matches

-- Wide admin -- Unlock the Shopify admin width                    

拡張機能の基本情報

名前 Liquify - Shopify Code Search & Editor Liquify - Shopify Code Search & Editor
ID edekihmjmpkkkaolmojnajojfgphccma
公式URL https://chromewebstore.google.com/detail/liquify-shopify-code-sear/edekihmjmpkkkaolmojnajojfgphccma
説明 Code Search / Themes / Editor Enhancements
ファイルサイズ 60.99 KB
インストール数 2,575
現在のバージョン 1.4.3
最終更新日 2023-12-15
公開日 2021-05-06
評価 3.68/5 合計 22 レビュー
開発者 Luke C
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/lukechadwick/Liquify
ヘルプページのURL https://github.com/lukechadwick/Liquify/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Liquify - Shopify Code Search & Editor",
    "version": "1.4.3",
    "manifest_version": 3,
    "description": "Code Search \/ Themes \/ Editor Enhancements",
    "homepage_url": "https:\/\/github.com\/lukechadwick\/Liquify",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "options_page": "src\/options\/index.html",
    "action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Liquify",
        "default_popup": "src\/popup\/popup.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/online-store-web.shopifyapps.com\/*"
            ],
            "js": [
                "src\/feature\/_fontSize.js",
                "src\/feature\/_search.js",
                "src\/feature\/_theme.js",
                "src\/feature\/_attachIcons.js",
                "src\/feature\/_tabBehaviour.js",
                "src\/feature\/wideAdmin.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/*.myshopify.com\/admin\/*",
                "https:\/\/admin.shopify.com\/store\/*"
            ],
            "js": [
                "src\/feature\/_assetExtractor.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/feature\/openAdmin-content.js",
                "src\/feature\/openResource-content.js",
                "src\/feature\/openThemeEditor-content.js",
                "src\/feature\/openCodeEditor-content.js",
                "src\/themes\/vscode.css",
                "src\/themes\/atom.css",
                "src\/themes\/icons.css",
                "src\/themes\/common.css",
                "src\/themes\/tabs.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}