Yotpo Support Tool
The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets
Что такое Yotpo Support Tool?
Yotpo Support Tool - это расширение Chrome, разработанное Yotpo, и его основная функция - "The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets".
Снимки экрана расширения
Скачать файл CRX расширения Yotpo Support Tool
Скачайте файлы расширений Yotpo Support Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Features include: * Finding and displaying the store Appkey * eCommerce platform(beta) * Product ID on the current page * Checking the installation of star ratings * Testing Rich Snippet implementation * Integration with JS BIN
Основная информация о расширении
Название | Yotpo Support Tool |
ID | ggbmidfnhocfelicoaeiekoijnhgoplm |
Официальный URL | https://chromewebstore.google.com/detail/yotpo-support-tool/ggbmidfnhocfelicoaeiekoijnhgoplm |
Описание | The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets |
Размер файла | 56.46 KB |
Количество установок | 243 |
Текущая Версия | 1.6.1 |
Последнее Обновление | 2020-11-05 |
Дата публикации | 2020-10-08 |
Разработчик | Yotpo |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Yotpo Support Tool", "description": "The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets", "version": "1.6.1", "icons": { "48": "icon.png" }, "author": "Yotpo Support", "homepage_url": "https:\/\/www.yotpo.com", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Yotpo!" }, "permissions": [ "tabs", "activeTab", "https:\/\/ajax.googleapis.com\/" ], "content_scripts": [ { "js": [ "jquery.js", "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |