GTrack: Simple email tracker for Gmail ™
GTrack helps you to track when your emails are opened and when links are clicked.
¿Qué es GTrack: Simple email tracker for Gmail ™?
GTrack: Simple email tracker for Gmail ™ es una extensión de Chrome desarrollada por Quicklution, y su función principal es "GTrack helps you to track when your emails are opened and when links are clicked.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GTrack: Simple email tracker for Gmail ™
Descarga archivos de extensión GTrack: Simple email tracker for Gmail ™ 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
GTrack also helps you to track how many times your emails were opened, and how many times your links were clicked. This is Gmail tracking at its best. It is a simple, yet a powerful email-tracker. Start for free. When GTrack is used by Quicklution's Mail Merge service you can add the Unsubscribe feature. Try the Mail Merge Google Workspace add-on for free: https://workspace.google.com/marketplace/app/mail_merge/218858140171
Información Básica de la Extensión
Nombre | GTrack: Simple email tracker for Gmail ™ |
ID | ipiageammojdgjaijboomeeaoedhgiof |
URL Oficial | https://chromewebstore.google.com/detail/gtrack-simple-email-track/ipiageammojdgjaijboomeeaoedhgiof |
Descripción | GTrack helps you to track when your emails are opened and when links are clicked. |
Tamaño del Archivo | 3.17 MB |
Cantidad de Instalaciones | 797 |
Versión Actual | 1.6 |
Última Actualización | 2023-12-21 |
Fecha de Publicación | 2022-12-28 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Quicklution |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.quicklution.com/g-track |
URL de la Página de Ayuda | https://www.quicklution.com/g-track/dashboard/contactus |
URL de la Página de Política de Privacidad | https://www.quicklution.com/g-track |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GTrack: Simple email tracker for Gmail \u2122", "short_name": "GTrack", "description": "GTrack helps you to track when your emails are opened and when links are clicked.", "version": "1.6", "manifest_version": 3, "homepage_url": "https:\/\/www.quicklution.com\/g-track\/", "icons": { "32": "images\/icon32.png", "64": "images\/icon64.png" }, "action": { "default_popup": "popup.html", "default_icon": { "32": "images\/icon32.png", "64": "images\/icon64.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js", "kefir.min.js", "pageWorld.js" ], "css": [ "css\/gmail.css" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js", "type": "module" }, "permissions": [ "scripting", "storage", "notifications" ], "host_permissions": [ "https:\/\/mail.google.com\/", "https:\/\/www.quicklution.com\/*", "https:\/\/jennet-destined-piranha.ngrok-free.app\/paymentgateway\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/www.quicklution.com\/*", "http:\/\/localhost\/*" ] } ] } |