Shopify Theme helper
Capture Shopify Theme Preview link
Shopify Theme helper là gì?
Shopify Theme helper là một tiện ích mở rộng Chrome được phát triển bởi https://appsdart.com, và tính năng chính của nó là "Capture Shopify Theme Preview link".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Shopify Theme helper
Tải xuống các tệp mở rộng Shopify Theme helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Just browse on any store and click on the extension icon, it will show all the theme relevant details of the store. Features : 1. Jump to the Collection or Product Page Admin directly from the store while browsing. You must be logged in to use this feature. 2. Capture the current theme URL to share with others, it will generate relevant URL on the basis of any product or collection page which you’re browsing. - 3. Get rid of the sticky theme preview bar while working with debugger tools. Hide the bar by default for all the stores in just one click.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Shopify Theme helper |
ID | palnodkhbhhnaoecdfbifdfpibklccdk |
URL Chính Thức | https://chromewebstore.google.com/detail/shopify-theme-helper/palnodkhbhhnaoecdfbifdfpibklccdk |
Mô tả | Capture Shopify Theme Preview link |
Kích Thước Tệp | 206 KB |
Số Lần Cài Đặt | 578 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2022-11-04 |
Ngày Phát Hành | 2019-12-22 |
Đánh Giá | 5.00/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://appsdart.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://appsdart.com |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shopify Theme helper", "version": "2.0.2", "manifest_version": 2, "description": "Capture Shopify Theme Preview link", "author": "Appsdart", "icons": { "16": "images\/themehelper_16x.png", "48": "images\/themehelper_48x.png", "128": "images\/themehelper_128x.png" }, "browser_action": { "default_icon": "images\/themehelper_48x.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "run_at": "document_end", "js": [ "content.js" ], "all_frames": false } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage", "background", "clipboardWrite" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |