Show Tab List
Show all sites in the current page
Что такое Show Tab List?
Show Tab List - это расширение Chrome, разработанное pinibalilihamelech, и его основная функция - "Show all sites in the current page".
Снимки экрана расширения
Скачать файл CRX расширения Show Tab List
Скачайте файлы расширений Show Tab List в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Press Ctrl+Shift+Y to view a list of the sites used in the current page. Основная информация о расширении
| Название | |
| ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
| Официальный URL | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
| Описание | Show all sites in the current page |
| Размер файла | 8.67 KB |
| Количество установок | 14,454 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2015-03-13 |
| Дата публикации | 2015-03-13 |
| Рейтинг | 2.11/5 Всего 9 оценок |
| Разработчик | pinibalilihamelech |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Show Tab List",
"description": "Show all sites in the current page",
"version": "0.1",
"manifest_version": 2,
"icons": {
"16": "resources\/images\/icon-16.png",
"48": "resources\/images\/icon-48.png",
"128": "resources\/images\/icon-128.png"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs"
],
"background": {
"scripts": [
"resources\/js\/myBackground.js"
]
},
"commands": {
"toggle-tab-list": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Toggle tab list"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"resources\/js\/page.js"
]
}
]
} | |