Clockk
Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension.
¿Qué es Clockk?
Clockk es una extensión de Chrome desarrollada por Clockk.com Inc., y su función principal es "Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Clockk
Descarga archivos de extensión Clockk 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
Make more money with quick, painless, and accurate time tracking. Clockk makes agencies more efficient and profitable by enabling data-driven decision making about time. No timers needed! This web extension allows Clockk to gather productivity data as you browse the internet. An active Clockk account is required to use this extension.
Información Básica de la Extensión
Nombre | Clockk |
ID | inpnfpglfklplkhnpggbomjdfjlnldhg |
URL Oficial | https://chromewebstore.google.com/detail/clockk/inpnfpglfklplkhnpggbomjdfjlnldhg |
Descripción | Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension. |
Tamaño del Archivo | 937 KB |
Cantidad de Instalaciones | 739 |
Versión Actual | 2.3.9 |
Última Actualización | 2023-11-18 |
Fecha de Publicación | 2020-03-24 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | Clockk.com Inc. |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://clockk.com/ |
URL de la Página de Política de Privacidad | https://clockk.com/our-privacy-promise |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clockk", "author": "Clockk.com Inc.", "homepage_url": "https:\/\/clockk.com\/", "short_name": "Clockk", "description": "Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension.", "version": "2.3.9", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Clockk", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options\/options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "injections\/page-reporter.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/app.clockk.com\/*" ], "js": [ "injections\/app.clockk.com.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "injections\/mail.google.com.js" ], "run_at": "document_idle" } ], "permissions": [ "tabs", "storage", "identity", "identity.email", "notifications", "https:\/\/*\/*", "http:\/\/*\/*" ], "optional_permissions": [ "*:\/\/*\/*" ] } |