Stock Performer Extension

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

Co to jest Stock Performer Extension?

Stock Performer Extension to rozszerzenie Chrome opracowane przez https://www.stockperformer.com, a jego główną funkcją jest „This extension allows Stock Performer users to retrieve sales data from their agencies.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Stock Performer Extension

Pobierz pliki rozszerzeń Stock Performer Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Stock Performer Extension Stock Performer Extension
ID pbhdefffkgembmlkmngmokcmelkeobob
Oficjalny URL https://chromewebstore.google.com/detail/stock-performer-extension/pbhdefffkgembmlkmngmokcmelkeobob
Opis This extension allows Stock Performer users to retrieve sales data from their agencies.
Rozmiar pliku 33.38 KB
Liczba instalacji 1,402
Aktualna Wersja 0.8.2
Ostatnia Aktualizacja 2023-11-07
Data Publikacji 2019-06-09
Ocena 4.33/5 Łącznie 6 Oceny
Deweloper https://www.stockperformer.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.stockperformer.com/
Adres URL Strony Pomocy https://www.stockperformer.com/faq
Adres URL Strony Polityki Prywatności https://www.stockperformer.com/privacy
Obsługiwane Języki 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"
    }
}