Stock Performer Extension

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

什么是Stock Performer Extension?

Stock Performer Extension是由https://www.stockperformer.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows Stock Performer users to retrieve sales data from their agencies.”。

扩展截图

screenshot

下载Stock Performer Extension扩展crx文件

下载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"
    }
}