Save Tabs - Browser Session Manager
A password-protected tab saver and session manager to store tabs in the current window, or all windows with tab grouping support
Τι είναι το Save Tabs - Browser Session Manager;
Το Save Tabs - Browser Session Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον emano.waldeck, και η κύρια λειτουργία του είναι "A password-protected tab saver and session manager to store tabs in the current window, or all windows with tab grouping support".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Save Tabs - Browser Session Manager
Λήψη αρχείων επέκτασης Save Tabs - Browser Session Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension saves tabs for later to prevent cluttering of the tab area. You can request to store tabs and close them to free the memory usage of these tabs when they are not needed. This extension uses the built-in sync API to allow storing in a machine and restoring in another one. Also, it is possible to protect stored tabs with a password. The extension uses the built-in crypto method to encrypt your tab data with the SHA-256 encryption key before storing them in your browser storage to protect data. Stored tabs keep their active and pinned states. Features: 1. Save and store window dimensions 2. Save and restore incognito states 3. Save and restore tab's pinned state 4. Save and restore tab groupings and their properties (color, name, and collapsed state) Notes: 1. There is no way to restore tabs if they are password protected and the password is forgotten. 2. By default, when a new session is restored, the session gets erased from the storage. You can use the Shift key while pressing a session to keep the session in storage. 3. This extension uses synced storage to allow the user to store and restore from multiple computers. 4. you can restore all session tabs in the current window by pressing the Ctrl (Command) key while restoring the session 5. You can edit a session from the popup view or ask the extension to update a session from the currently open tabs. This feature makes it possible to use the extension as a browser session manager. 6. This extension saves and restores tab groups and their properties.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Save Tabs - Browser Session Manager |
ID | bmpgbfhajjdffipnaonemjdeifamndod |
Επίσημο URL | https://chromewebstore.google.com/detail/save-tabs-browser-session/bmpgbfhajjdffipnaonemjdeifamndod |
Περιγραφή | A password-protected tab saver and session manager to store tabs in the current window, or all windows with tab grouping support |
Μέγεθος Αρχείου | 81.34 KB |
Αριθμός Εγκαταστάσεων | 958 |
Τρέχουσα Έκδοση | 0.3.0 |
Τελευταία Ενημέρωση | 2021-08-09 |
Ημερομηνία Δημοσίευσης | 2020-04-16 |
Αξιολόγηση | 3.42/5 Συνολικά 12 Αξιολογήσεις |
Προγραμματιστής | emano.waldeck |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://add0n.com/save-tabs.html |
Διεύθυνση URL της Σελίδας Βοήθειας | https://add0n.com/save-tabs.html |
Υποστηριζόμενες Γλώσσες | de,en,fr,nl,es,it,pt-BR,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.0", "name": "Save Tabs - Browser Session Manager", "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "data\/icons\/16.png", "19": "data\/icons\/19.png", "32": "data\/icons\/32.png", "38": "data\/icons\/38.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" }, "permissions": [ "tabs", "storage", "notifications", "contextMenus", "tabGroups", "downloads" ], "host_permissions": [ "chrome:\/\/favicon\/" ], "background": { "service_worker": "worker.js" }, "action": { "default_popup": "data\/popup\/index.html" }, "homepage_url": "https:\/\/add0n.com\/save-tabs.html", "commands": { "_execute_action": { "description": "Press the action button" } } } |