Custom Shortcut Button
Allows you to set a custom shortcut button next to your address bar.
Что такое Custom Shortcut Button?
Custom Shortcut Button - это расширение Chrome, разработанное xylophono, и его основная функция - "Allows you to set a custom shortcut button next to your address bar.".
Снимки экрана расширения
Скачать файл CRX расширения Custom Shortcut Button
Скачайте файлы расширений Custom Shortcut Button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Custom Shortcut Button puts a new button next to your address bar, which you can then use to easily and repeatedly open a custom URL in a new tab. To set the URL please right click on the icon and select "Options".
Changelog:
V1.0 - Jan 31st 2017
- Initial release.
For any issues please contact [email protected] :) Основная информация о расширении
| Название | |
| ID | kcmejemnmnheajipjgilcefofjchdafg |
| Официальный URL | https://chromewebstore.google.com/detail/custom-shortcut-button/kcmejemnmnheajipjgilcefofjchdafg |
| Описание | Allows you to set a custom shortcut button next to your address bar. |
| Размер файла | 48.96 KB |
| Количество установок | 713 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2017-01-31 |
| Дата публикации | 2017-01-31 |
| Рейтинг | 5.00/5 Всего 5 оценок |
| Разработчик | xylophono |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Custom Shortcut Button",
"short_name": "Custom Shortcut",
"description": "Allows you to set a custom shortcut button next to your address bar.",
"version": "1.0",
"version_name": "1.0",
"minimum_chrome_version": "38",
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png",
"512": "assets\/icon.png"
},
"browser_action": {
"default_icon": "assets\/icon.png",
"default_title": ""
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"options_ui": {
"page": "index.html"
}
} | |