Yotpo Support Tool
The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets
¿Qué es Yotpo Support Tool?
Yotpo Support Tool es una extensión de Chrome desarrollada por Yotpo, y su función principal es "The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Yotpo Support Tool
Descarga archivos de extensión Yotpo Support Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Yotpo Support Tool |
ID | ggbmidfnhocfelicoaeiekoijnhgoplm |
URL Oficial | https://chromewebstore.google.com/detail/yotpo-support-tool/ggbmidfnhocfelicoaeiekoijnhgoplm |
Descripción | The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets |
Tamaño del Archivo | 56.46 KB |
Cantidad de Instalaciones | 243 |
Versión Actual | 1.6.1 |
Última Actualización | 2020-11-05 |
Fecha de Publicación | 2020-10-08 |
Desarrollador | Yotpo |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } } |