Quick History
This Chrome extension allows users to view the history of the current active tab in their browser.
Τι είναι το Quick History;
Το Quick History είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον probukdev, και η κύρια λειτουργία του είναι "This Chrome extension allows users to view the history of the current active tab in their browser.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Quick History
Λήψη αρχείων επέκτασης Quick History σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Quick History |
ID | dnngcfoognibnkkngfcamgaibjjlkfdn |
Επίσημο URL | https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn |
Περιγραφή | This Chrome extension allows users to view the history of the current active tab in their browser. |
Μέγεθος Αρχείου | 258 KB |
Αριθμός Εγκαταστάσεων | 58 |
Τρέχουσα Έκδοση | 0.1.2 |
Τελευταία Ενημέρωση | 2023-01-23 |
Ημερομηνία Δημοσίευσης | 2023-01-17 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | probukdev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://quick-history.web.app |
Διεύθυνση URL της Σελίδας Βοήθειας | https://quick-history.web.app |
URL της Σελίδας Πολιτικής Απορρήτου | https://quick-history.web.app/privacy-policy.html |
Υποστηριζόμενες Γλώσσες | 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 } |