SameTab - keep only one copy of the tab open

SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…

Что такое SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open - это расширение Chrome, разработанное valentin.alekseev, и его основная функция - "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".

Скачать файл CRX расширения SameTab - keep only one copy of the tab open

Скачайте файлы расширений SameTab - keep only one copy of the tab open в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.                    

Основная информация о расширении

Название SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
Официальный URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Описание SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
Размер файла 8.9 KB
Количество установок 12
Текущая Версия 1.1
Последнее Обновление 2016-02-16
Дата публикации 2016-02-16
Рейтинг 3.50/5 Всего 2 оценок
Разработчик valentin.alekseev
Тип оплаты free
URL страницы помощи https://github.com/valentinalexeev/chrome-sametab
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SameTab - keep only one copy of the tab open",
    "description": "",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "storage"
    ]
}