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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://www.stockperformer.com/faq
URL หน้านโยบายความเป็นส่วนตัว 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"
    }
}