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"입니다.
확장 프로그램 스크린샷
Liquify - Shopify Code Search & Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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": [ " |