Stock Performer Extension

This extension allows Stock Performer users to retrieve sales data from their agencies.

ما هو Stock Performer Extension؟

Stock Performer Extension هو إضافة Chrome تم تطويرها بواسطة https://www.stockperformer.com، والميزة الرئيسية لها هي "This extension allows Stock Performer users to retrieve sales data from their agencies.".

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

screenshot

تحميل ملف CRX للإضافة Stock Performer Extension

قم بتنزيل ملفات الامتداد Stock Performer Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Stock Performer does not require its users to submit their agency passwords. Instead, it retrieves the sales data while users are logged into their agency accounts. (While logged out, Stock Performer can never access that data.) This Chrome plugin enables Stock Performer to do that.                    

معلومات أساسية عن التمديد

الاسم Stock Performer Extension Stock Performer Extension
ID pbhdefffkgembmlkmngmokcmelkeobob
عنوان URL الرسمي https://chromewebstore.google.com/detail/stock-performer-extension/pbhdefffkgembmlkmngmokcmelkeobob
الوصف This extension allows Stock Performer users to retrieve sales data from their agencies.
حجم الملف 33.38 KB
عدد التثبيتات 1,402
النسخة الحالية 0.8.2
آخر تحديث 2023-11-07
تاريخ النشر 2019-06-09
تقييم 4.33/5 مجموع تقييمات 6
المطور https://www.stockperformer.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.stockperformer.com/
عنوان صفحة المساعدة https://www.stockperformer.com/faq
عنوان صفحة سياسة الخصوصية https://www.stockperformer.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stock Performer Extension",
    "short_name": "stkprfrmr",
    "version": "0.8.2",
    "description": "This extension allows Stock Performer users to retrieve sales data from their agencies.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.stockperformer.com\/*",
                "*:\/\/stockperformer.com\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "serviceworker.js"
    }
}