Workspaces
Organize browser tabs into workspaces.
Workspaces क्या है?
Workspaces Vojtěch Smejkal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Organize browser tabs into workspaces."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Workspaces एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Too many tabs open? Create workspaces, put your tabs in there, and switch between them whenever you need. Workspace automatically saves all your tabs whenever you close the window and restores them once you open it again. You can create a workspace for a particular subject in school, personal project, gift idea, travel plan, or others. Version 0.7 ========= - New option to keep workspaces sorted by name - New option to add new workspaces to the top - Open workspaces are visually marked in the list - Import & Export - Better local files handling - Fixed restoring workspaces in fullscreen mode
एक्सटेंशन की मूल जानकारी
नाम | Workspaces |
ID | hpljjefgmnkloakbfckghmlapghabgfa |
आधिकारिक URL | https://chromewebstore.google.com/detail/workspaces/hpljjefgmnkloakbfckghmlapghabgfa |
विवरण | Organize browser tabs into workspaces. |
फ़ाइल का आकार | 1006 KB |
स्थापना संख्या | 7,004 |
वर्तमान संस्करण | 0.7 |
अंतिम अपडेट | 2024-02-18 |
प्रकाशन तिथि | 2020-10-09 |
रेटिंग | 4.43/5 कुल 42 रेटिंग्स |
डेवलपर | Vojtěch Smejkal |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/vsmejkal/chrome-workspaces |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Workspaces", "version": "0.7", "manifest_version": 3, "description": "Organize browser tabs into workspaces.", "homepage_url": "https:\/\/github.com\/vsmejkal\/chrome-workspaces", "icons": { "16": "src\/icons\/extension\/icon16.png", "32": "src\/icons\/extension\/icon32.png", "48": "src\/icons\/extension\/icon48.png", "128": "src\/icons\/extension\/icon128.png", "256": "src\/icons\/extension\/icon256.png" }, "background": { "service_worker": "src\/background\/serviceWorker.js", "type": "module" }, "options_ui": { "page": "src\/options\/options.html", "open_in_tab": false }, "action": { "default_icon": { "16": "src\/icons\/extension\/icon16.png", "24": "src\/icons\/extension\/icon24.png", "32": "src\/icons\/extension\/icon32.png", "48": "src\/icons\/extension\/icon48.png" }, "default_title": "Workspaces", "default_popup": "src\/popup\/popup.html" }, "permissions": [ "contextMenus", "storage", "tabs", "tabGroups" ], "optional_host_permissions": [ "file:\/\/*\/*" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+W" } } } } |