Quick History
This Chrome extension allows users to view the history of the current active tab in their browser.
¿Qué es Quick History?
Quick History es una extensión de Chrome desarrollada por probukdev, y su función principal es "This Chrome extension allows users to view the history of the current active tab in their browser.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Quick History
Descarga archivos de extensión Quick History 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
Privacy is considered as the most important feature. Browsing data is stored in the browser itself and there are no network calls present. The browser history data is not synched anywhere else. Deleting the extension will delete all data stored by the extension on your browser. Quick History requests the minimum permissions required to operate the extension.
Información Básica de la Extensión
Nombre | Quick History |
ID | dnngcfoognibnkkngfcamgaibjjlkfdn |
URL Oficial | https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn |
Descripción | This Chrome extension allows users to view the history of the current active tab in their browser. |
Tamaño del Archivo | 258 KB |
Cantidad de Instalaciones | 58 |
Versión Actual | 0.1.2 |
Última Actualización | 2023-01-23 |
Fecha de Publicación | 2023-01-17 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | probukdev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://quick-history.web.app |
URL de la Página de Ayuda | https://quick-history.web.app |
URL de la Página de Política de Privacidad | https://quick-history.web.app/privacy-policy.html |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick History", "version": "0.1.2", "description": "This Chrome extension allows users to view the history of the current active tab in their browser.", "permissions": [ "storage", "tabs", "unlimitedStorage", "history" ], "host_permissions": [ "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*\/*" ] } ], "icons": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "action": { "default_icon": { "16": "assets\/quick-history-16.png", "24": "assets\/quick-history-24.png", "32": "assets\/quick-history-32.png", "64": "assets\/quick-history-64.png", "128": "assets\/quick-history-64.png" }, "default_title": "Quick History", "default_popup": "popup.html" }, "manifest_version": 3 } |