Logify

Record Shopify Staff Activities

Logify란 무엇입니까?

Logify은(는) https://tabgraf.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record Shopify Staff Activities"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Logify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Logify Logify
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"
    }
}