Tab Overflow
A tool to prevent you from opening too many tabs.
Что такое Tab Overflow?
Tab Overflow - это расширение Chrome, разработанное lexmart, и его основная функция - "A tool to prevent you from opening too many tabs.".
Снимки экрана расширения
Скачать файл CRX расширения Tab Overflow
Скачайте файлы расширений Tab Overflow в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource. Github Page: https://github.com/lexmart/taboverflow Developed by Alexander Martin (www.github.com/lexmart) Graphics designed by Tigran Kasparian
Основная информация о расширении
Название | Tab Overflow |
ID | bkjofbabnobnejgceoncjoimceohlogl |
Официальный URL | https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl |
Описание | A tool to prevent you from opening too many tabs. |
Размер файла | 21.73 KB |
Количество установок | 16 |
Текущая Версия | 0.1 |
Последнее Обновление | 2015-10-22 |
Дата публикации | 2015-10-22 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | lexmart |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Overflow", "description": "A tool to prevent you from opening too many tabs.", "version": "0.1", "options_page": "options.html", "background": { "persistent": false, "scripts": [ "tab-overflow.js" ] }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "web_accessible_resources": [ "options.html" ], "browser_action": { "default_title": "Tab Overflow", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |