Video Reviews For Buying Online
While checking an online store this plugin connects you with relevant review videos that will help you make a good decision
¿Qué es Video Reviews For Buying Online?
Video Reviews For Buying Online es una extensión de Chrome desarrollada por tiagorbf, y su función principal es "While checking an online store this plugin connects you with relevant review videos that will help you make a good decision".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Video Reviews For Buying Online
Descarga archivos de extensión Video Reviews For Buying Online 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
This is a simple yet very useful chrome plugin for people that frequently buy online. Every time you open a product page in one of the supported online stores it links the product title with reviews on youtube and displays a youtube button on the page, that way you can easily click and access relevant youtube reviews. Disclaimer: This extension is 100% private and open source, I do not collect any data and I don't want to use your time to show you ads neither of us believes in! This project follows the moto: "Pay what you think is worth". If you like this extension and want to contribute to its development you can do so here: www.buymeacoffee.com/tiagorbf Thanks Github repo: https://github.com/tiagorbf/youtube-product-reviews-plugin
Información Básica de la Extensión
Nombre | |
ID | epffndbljlnghnfjomejlojlmikegfod |
URL Oficial | https://chrome.google.com/webstore/detail/video-reviews-for-buying/epffndbljlnghnfjomejlojlmikegfod |
Descripción | While checking an online store this plugin connects you with relevant review videos that will help you make a good decision |
Tamaño del Archivo | 1.32 MB |
Cantidad de Instalaciones | 54 |
Versión Actual | 1.1.0 |
Última Actualización | 2021-07-17 |
Fecha de Publicación | 2021-01-26 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | tiagorbf |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://www.buymeacoffee.com/tiagorbf |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Reviews For Buying Online", "version": "1.1.0", "description": "While checking an online store this plugin connects you with relevant review videos that will help you make a good decision", "manifest_version": 2, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/*.amazon.*\/*", "*:\/\/*.thomann.*\/*", "*:\/\/*.musicstore.*\/*", "*:\/\/*.ebay.*\/*", "*:\/\/*.etsy.*\/*", "*:\/\/*.royalqueenseeds.*\/*", "*:\/\/*.alibaba.*\/*", "*:\/\/*.bestbuy.*\/*" ], "js": [ "extensions\/content.js" ], "all_frames": true, "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "web_accessible_resources": [ "icon.png", "youtube.png" ], "icons": { "32": "icon.png", "48": "icon_48.png" } } |