New Collections
Save and restore tabs
Co je New Collections?
New Collections je rozšíření Chrome vyvinuté Alex Logashov, a jeho hlavní funkcí je „Save and restore tabs“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření New Collections
Stáhněte si soubory rozšíření New Collections ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Quickly save and restore open tabs without creating new bookmark entries. It doesn't use any online services or connections except Chrome's default storage sync service to optionally sync data between browsers. Import and export can be done by saving and loading generated JSON file. Extension can be used as a popup or New Tab page. New Tab page can optionally display top sites and open tabs from synced devices. Features: - Save and restore tabs - Import/export saved tabs using JSON file - Automatic theme adjustment based on browser colors - Remove individual tabs or entire tab group - Edit tab title and URL - Search saved tabs and open tabs from synced devices - New tabs can be added to existing tab groups - Display top sites on New Tab page - Display synced tabs from other devices on New Tab page
Základní Informace o Rozšíření
Název | New Collections |
ID | lfchffgphpkiobhgmpbdminmdieacaje |
Oficiální URL | https://chromewebstore.google.com/detail/new-collections/lfchffgphpkiobhgmpbdminmdieacaje |
Popis | Save and restore tabs |
Velikost souboru | 1002 KB |
Počet instalací | 115 |
Aktuální Verze | 1.3.0 |
Poslední Aktualizace | 2023-12-07 |
Datum Vydání | 2023-02-28 |
Vývojář | Alex Logashov |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/logashoff/new-collections |
URL Stránky Nápovědy | https://github.com/logashoff/new-collections/issues |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Collections", "description": "Save and restore tabs", "version": "1.3.0", "minimum_chrome_version": "104", "manifest_version": 3, "offline_enabled": true, "icons": { "16": "assets\/icons\/icon-16.png", "32": "assets\/icons\/icon-32.png", "48": "assets\/icons\/icon-48.png", "128": "assets\/icons\/icon-128.png" }, "action": { "default_popup": "index.html#\/popup" }, "background": { "service_worker": "background.js" }, "chrome_url_overrides": { "newtab": "index.html#\/home" }, "options_ui": { "page": "index.html#\/options" }, "permissions": [ "sessions", "topSites", "storage", "tabs", "favicon" ] } |