Quick History
This Chrome extension allows users to view the history of the current active tab in their browser.
Qu'est-ce que Quick History ?
Quick History est une extension Chrome développée par probukdev, et sa fonction principale est "This Chrome extension allows users to view the history of the current active tab in their browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Quick History
Téléchargez les fichiers d'extension Quick History au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Quick History |
ID | dnngcfoognibnkkngfcamgaibjjlkfdn |
URL Officiel | https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn |
Description | This Chrome extension allows users to view the history of the current active tab in their browser. |
Taille du Fichier | 258 KB |
Nombre d'Installations | 58 |
Version Actuelle | 0.1.2 |
Dernière Mise à Jour | 2023-01-23 |
Date de Publication | 2023-01-17 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | probukdev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://quick-history.web.app |
URL de la Page d'Aide | https://quick-history.web.app |
URL de la Page de Politique de Confidentialité | https://quick-history.web.app/privacy-policy.html |
Langues Prises en Charge | 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 } |