No Dupe Tabs

Swap to preexisting tab if url is already opened.

No Dupe Tabs क्या है?

No Dupe Tabs J Wang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Swap to preexisting tab if url is already opened."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में No Dupe Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        If you open a URL that already exists in one of your tabs, this simple extension will close the tab and switch to the preexisting tab! If you rarely reuse tabs, use this extension to avoid a list of duplicate tabs! 

Add website to whitelist if you want to allow duplicates for those websites. To access whitelist, press the extension icon at top right of your browser. 

Update-
V2.1 - Added whitelist
V2.2 - Fixed pop-up style on Windows
V2.3 - Fixed empty whitelist bug                    

एक्सटेंशन की मूल जानकारी

नाम No Dupe Tabs No Dupe Tabs
ID fajkhkmabkgflclnlmfdafpikejjncca
आधिकारिक URL https://chrome.google.com/webstore/detail/no-dupe-tabs/fajkhkmabkgflclnlmfdafpikejjncca
विवरण Swap to preexisting tab if url is already opened.
फ़ाइल का आकार 37.89 KB
स्थापना संख्या 868
वर्तमान संस्करण 2.3
अंतिम अपडेट 2016-08-11
प्रकाशन तिथि 2016-08-11
रेटिंग 4.00/5 कुल 9 रेटिंग्स
डेवलपर J Wang
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Dupe Tabs",
    "version": "2.3",
    "manifest_version": 2,
    "description": "Swap to preexisting tab if url is already opened.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "noDupeTab",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.1.0.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}