Logify
Record Shopify Staff Activities
Logify là gì?
Logify là một tiện ích mở rộng Chrome được phát triển bởi https://tabgraf.com, và tính năng chính của nó là "Record Shopify Staff Activities".
Ả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 Logify
Tải xuống các tệp mở rộng Logify 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
This extension can record staff activities for your Shopify account. It records almost all type of logs including products, orders, transfers, inventory, customers, themes, preferences etc. To view the logs you need to install the Logify App (https://apps.shopify.com/activity-logs) on Shopify. The logs include following fields: 1. Staff ID 2. Staff Name 3. URL 4. Event Time 5. Event Details This will allow shop owners to track who is doing what on your account. For example: Who recently made a change in a product.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gnhpfakeckoidihflopaaenkiejimpln |
URL Chính Thức | https://chromewebstore.google.com/detail/logify/gnhpfakeckoidihflopaaenkiejimpln |
Mô tả | Record Shopify Staff Activities |
Kích Thước Tệp | 54.78 KB |
Số Lần Cài Đặt | 648 |
Phiên Bản Hiện Tại | 2.3 |
Cập Nhật Lần Cuối | 2023-11-05 |
Ngày Phát Hành | 2019-11-07 |
Nhà Phát Triển | https://tabgraf.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://apps.shopify.com/activity-logs |
URL Trang Chính Sách Bảo Mật | https://tabgraf.com/products/logify/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.3", "name": "Logify", "description": "Record Shopify Staff Activities", "permissions": [ "webRequest", "tabs" ], "host_permissions": [ "https:\/\/*.myshopify.com\/*", "https:\/\/admin.shopify.com\/*" ], "action": { "default_icon": "logo.png", "default_popup": "popup.html" }, "icons": { "16": "logo-16x16.png", "32": "logo-32x32.png", "48": "logo-48x48.png", "128": "logo-128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.myshopify.com\/*", "https:\/\/admin.shopify.com\/*" ], "css": [ "main.css" ], "js": [ "common\/config.js", "main.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |