Yotpo Support Tool
The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets
Vad är Yotpo Support Tool?
Yotpo Support Tool är en Chrome-tillägg utvecklad av Yotpo, och dess huvudfunktion är "The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets".
Tilläggsskärmbilder
Ladda ner Yotpo Support Tool-förlängningens CRX-fil
Ladda ner Yotpo Support Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Yotpo Support Tool |
ID | ggbmidfnhocfelicoaeiekoijnhgoplm |
Officiell webbadress | https://chromewebstore.google.com/detail/yotpo-support-tool/ggbmidfnhocfelicoaeiekoijnhgoplm |
Beskrivning | The internal Yotpo support tool. Extracts appkey, product ID, and Star Ratings. Also for testing Rich Snippets |
Filstorlek | 56.46 KB |
Antal Installationer | 243 |
Aktuell Version | 1.6.1 |
Senast Uppdaterad | 2020-11-05 |
Publiceringsdatum | 2020-10-08 |
Utvecklare | Yotpo |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } } |