Close Tab
A stationary button that closes the current tab. Clean up tabs with less effort.
Что такое Close Tab?
Close Tab - это расширение Chrome, разработанное http://justinreinhart.com, и его основная функция - "A stationary button that closes the current tab. Clean up tabs with less effort.".
Снимки экрана расширения
Скачать файл CRX расширения Close Tab
Скачайте файлы расширений Close Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The "Close Tab" extension provides a stationary button that closes the currently selected tab. This saves time visually hunting down the active tab and provides consistency for the user. Very simple. The icon is designed to work with dark and light themes. *Note: You can also press Ctrl + W to close tabs (when keyboard input isn't being captured by a plugin). *Note: If the icon gets hidden by Chrome, you can get your icon back by pinning it. It happens sometimes. :) *Added: Protect pinned tabs (Options Screen) P.S. Have you found a bug? Email address is provided in the options screen. Happy browsing.
Основная информация о расширении
Название | |
ID | hpmolahefgjbmidmoifolgpjkmhdmalf |
Официальный URL | https://chrome.google.com/webstore/detail/close-tab/hpmolahefgjbmidmoifolgpjkmhdmalf |
Описание | A stationary button that closes the current tab. Clean up tabs with less effort. |
Размер файла | 169 KB |
Количество установок | 3,000 |
Текущая Версия | 1.4.4 |
Последнее Обновление | 2021-07-15 |
Дата публикации | 2014-08-07 |
Рейтинг | 4.51/5 Всего 78 оценок |
Разработчик | http://justinreinhart.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Tab", "version": "1.4.4", "manifest_version": 2, "icons": { "48": "img\/ct-icon-48.png", "128": "img\/ct-icon-128.png" }, "description": "A stationary button that closes the current tab. Clean up tabs with less effort.", "options_page": "options.html", "browser_action": { "default_title": "Click to close the current tab", "default_icon": "img\/ct-icon-x-19.png" }, "web_accessible_resources": [ "img\/*", "css\/*", "js\/*" ], "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "js\/background.js" ] } } |