Liquify - Shopify Code Search & Editor

Code Search / Themes / Editor Enhancements

Liquify - Shopify Code Search & Editor क्या है?

Liquify - Shopify Code Search & Editor Luke C द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Code Search / Themes / Editor Enhancements"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Liquify - Shopify Code Search & Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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": [
                ""
            ]
        }
    ]
}