No Dupe Tabs

Swap to preexisting tab if url is already opened.

Что такое No Dupe Tabs?

No Dupe Tabs - это расширение Chrome, разработанное J Wang, и его основная функция - "Swap to preexisting tab if url is already opened.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения No Dupe Tabs

Скачайте файлы расширений No Dupe Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}