Logify

Record Shopify Staff Activities

ما هو Logify؟

Logify هو إضافة Chrome تم تطويرها بواسطة https://tabgraf.com، والميزة الرئيسية لها هي "Record Shopify Staff Activities".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Logify

قم بتنزيل ملفات الامتداد Logify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    }
}