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.”。
擴展截圖
下載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 |
ID | pbhdefffkgembmlkmngmokcmelkeobob |
官方網址 | 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" } } |