Tabs Counter

A simple extension for displaying the tab number next to the its title.

Что такое Tabs Counter?

Tabs Counter - это расширение Chrome, разработанное poctek5, и его основная функция - "A simple extension for displaying the tab number next to the its title.".

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

screenshot

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

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

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

                        A simple extension for displaying the tab number next to the its title.                    

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

Название Tabs Counter Tabs Counter
ID fkgbbcpdghmahjidddepeighkcdlihmp
Официальный URL https://chromewebstore.google.com/detail/tabs-counter/fkgbbcpdghmahjidddepeighkcdlihmp
Описание A simple extension for displaying the tab number next to the its title.
Размер файла 3.79 KB
Количество установок 60
Текущая Версия 0.4
Последнее Обновление 2016-10-19
Дата публикации 2016-10-18
Рейтинг 3.40/5 Всего 5 оценок
Разработчик poctek5
Тип оплаты free
Официальный сайт расширения https://github.com/poctek/tabs-counter
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabs Counter",
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "file:\/\/*\/"
    ],
    "version": "0.4",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}