Tab Manager
A tool for managing and organizing tabs
Tab Manager क्या है?
Tab Manager domsupamoe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool for managing and organizing tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Manager एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The philosophy behind it is to manage all the tabs within the current window. It is often the case that there should NOT be more than 2 or 3 browser windows opened. Thus, the extension itself has a limited or no support for managing multi-window tabs. ******************** The features included in this extension: - Actions for merge, sort, and kill tabs - Toggle to detect duplicate tabs and close previous opened tabs - Search and filter tabs from the input box - Drag and drop tab item will move tab to different position - Click on the tab item will redirect to web page - Click on red x will close the current tab item - Hover and press x will close the current tab item ******************** Source Code and Documentation https://github.com/domsupamoe/tab-manager ******************** Changelog https://github.com/domsupamoe/tab-manager/blob/master/CHANGELOG.md ******************** Please feel free to create issues and PRs to contribute to the project.
एक्सटेंशन की मूल जानकारी
नाम | Tab Manager |
ID | pjgghjfckgpmghploaenddaemikldhlc |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-manager/pjgghjfckgpmghploaenddaemikldhlc |
विवरण | A tool for managing and organizing tabs |
फ़ाइल का आकार | 93.41 KB |
स्थापना संख्या | 30 |
वर्तमान संस्करण | 1.9.4 |
अंतिम अपडेट | 2020-08-02 |
प्रकाशन तिथि | 2020-07-29 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | domsupamoe |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/domsupamoe/tab-manager |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Manager", "version": "1.9.4", "description": "A tool for managing and organizing tabs", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/tab_active16.png", "32": "images\/tab_active32.png", "48": "images\/tab_active48.png", "128": "images\/tab_active128.png" } }, "icons": { "16": "images\/tab_active16.png", "32": "images\/tab_active32.png", "48": "images\/tab_active48.png", "128": "images\/tab_active128.png" }, "manifest_version": 2 } |