Logify
Record Shopify Staff Activities
什么是Logify?
Logify是由https://tabgraf.com开发的Chrome扩展程序,该扩展的主要功能是“Record Shopify Staff Activities”。
扩展截图
下载Logify扩展crx文件
下载Logify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | gnhpfakeckoidihflopaaenkiejimpln |
官方URL | https://chromewebstore.google.com/detail/logify/gnhpfakeckoidihflopaaenkiejimpln |
简介 | Record Shopify Staff Activities |
文件大小 | 54.78 KB |
安装次数 | 648 |
当前版本 | 2.3 |
更新时间 | 2023-11-05 |
上架时间 | 2019-11-07 |
开发者 | https://tabgraf.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://apps.shopify.com/activity-logs |
隐私政策页面URL | https://tabgraf.com/products/logify/privacy-policy |
支持的语言 | 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" } } |