History by Date
Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…
¿Qué es History by Date?
History by Date es una extensión de Chrome desarrollada por https://baylaunch.com, y su función principal es "Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión History by Date
Descarga archivos de extensión History by Date 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
Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate browser history by date * Break usage down by continuous sessions * See what domains you visited most, per session * Example: "I used Chrome for 3 hours in the morning (mostly StackOverflow), and 2 hours in evening (mostly Gmail)" * Calculates total hours spent online each day * Filter out specific domains (Example: "Ignore Youtube.com")
Información Básica de la Extensión
Nombre | History by Date |
ID | cancngpbjlfnkdfeigpododikkpelmfg |
URL Oficial | https://chromewebstore.google.com/detail/history-by-date/cancngpbjlfnkdfeigpododikkpelmfg |
Descripción | Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate… |
Tamaño del Archivo | 367 KB |
Cantidad de Instalaciones | 14,383 |
Versión Actual | 1.0.5 |
Última Actualización | 2017-12-04 |
Fecha de Publicación | 2017-12-03 |
Calificación | 4.13/5 Total de 30 Calificaciones |
Desarrollador | https://baylaunch.com |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "History by Date", "short_name": "HistoryDate", "version": "1.0.5", "manifest_version": 2, "browser_action": { "default_icon": "dist\/logo_128.png", "default_title": "History by Date" }, "background": { "scripts": [ "back\/background.js" ] }, "content_security_policy": "default-src 'self'; script-src 'self' http:\/\/localhost:3000 'unsafe-eval'; connect-src http:\/\/localhost:3000; img-src 'self' chrome:\/\/favicon; style-src 'self' http:\/\/localhost:3000 'unsafe-inline'", "permissions": [ "history", "storage", "chrome:\/\/favicon\/", "tabs" ], "web_accessible_resources": [ "front\/*", "dist\/*" ], "icons": { "128": "dist\/logo_128.png" }, "commands": { "open-history-tab": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "View browser history" } } } |