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.".
Снимки экрана расширения
Скачать файл 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 |
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" } } |