New Collections
Save and restore tabs
New Collections क्या है?
New Collections Alex Logashov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save and restore tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में New Collections एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | New Collections |
ID | lfchffgphpkiobhgmpbdminmdieacaje |
आधिकारिक URL | https://chromewebstore.google.com/detail/new-collections/lfchffgphpkiobhgmpbdminmdieacaje |
विवरण | Save and restore tabs |
फ़ाइल का आकार | 1002 KB |
स्थापना संख्या | 115 |
वर्तमान संस्करण | 1.3.0 |
अंतिम अपडेट | 2023-12-07 |
प्रकाशन तिथि | 2023-02-28 |
डेवलपर | Alex Logashov |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/logashoff/new-collections |
सहायता पृष्ठ URL | https://github.com/logashoff/new-collections/issues |
समर्थित भाषाएँ | 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" ] } |