Stock Performer Extension

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

What is Stock Performer Extension?

Stock Performer Extension is a Chrome extension developed by https://www.stockperformer.com, and its main feature is "This extension allows Stock Performer users to retrieve sales data from their agencies.".

Extension Screenshots

screenshot

Download Stock Performer Extension Extension CRX File

Download Stock Performer Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Stock Performer Extension Stock Performer Extension
ID pbhdefffkgembmlkmngmokcmelkeobob
Official URL https://chromewebstore.google.com/detail/stock-performer-extension/pbhdefffkgembmlkmngmokcmelkeobob
Description This extension allows Stock Performer users to retrieve sales data from their agencies.
File Size 33.38 KB
Installation Count 1,402
Current Version 0.8.2
Last Updated 2023-11-07
Publish Date 2019-06-09
Rating 4.33/5 Total 6 Ratings
Developer https://www.stockperformer.com
Email [email protected]
Payment Type free
Extension Website https://www.stockperformer.com/
Help Page URL https://www.stockperformer.com/faq
Privacy Policy Page URL https://www.stockperformer.com/privacy
Supported Languages 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"
    }
}