Tab Deduper
An extension that allows the user to deduplicate tabs.
Tab Deduper क्या है?
Tab Deduper Trevor Siemens द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that allows the user to deduplicate tabs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Deduper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tab Deduper is an extension to find and remove duplicate Chrome tabs. Unlike other currently available extensions which dedup tabs, Tab Deduper differentiates itself in the following ways: - Duplicate tabs are not automatically closed. A list of duplicated tabs are presented, allowing for precise control over which tab gets closed. - Use of text OR regular expression based settings to control how tabs are compared, including use of title, fragment, and doing sed-like regex replacements on URLs. This last feature is very useful if you use other extensions which modify your tab URLs.
एक्सटेंशन की मूल जानकारी
नाम | Tab Deduper |
ID | fpcohiaaphpfoneofdlabjnpipbnkplj |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj |
विवरण | An extension that allows the user to deduplicate tabs. |
फ़ाइल का आकार | 26.73 KB |
स्थापना संख्या | 1,259 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2024-01-14 |
प्रकाशन तिथि | 2018-07-18 |
रेटिंग | 4.67/5 कुल 9 रेटिंग्स |
डेवलपर | Trevor Siemens |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/tsiemens/ChromeTabDeduper |
सहायता पृष्ठ URL | https://github.com/tsiemens/ChromeTabDeduper/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Deduper", "description": "An extension that allows the user to deduplicate tabs.", "version": "1.2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "eventPage.js" }, "options_page": "options.html", "permissions": [ "tabs", "activeTab", "storage", "contextMenus" ] } |