Shorty
URL Shortener
Что такое Shorty?
Shorty - это расширение Chrome, разработанное https://r3bl.com, и его основная функция - "URL Shortener".
Снимки экрана расширения
Скачать файл CRX расширения Shorty
Скачайте файлы расширений Shorty в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it. Основная информация о расширении
| Название | |
| ID | cbgcnhimnlnjejdopldfdicfingmaijg |
| Официальный URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
| Описание | URL Shortener |
| Размер файла | 120 KB |
| Количество установок | 50 |
| Текущая Версия | 2.1 |
| Последнее Обновление | 2023-03-11 |
| Дата публикации | 2020-05-31 |
| Рейтинг | 5.00/5 Всего 5 оценок |
| Разработчик | https://r3bl.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://r3bl.com |
| URL страницы помощи | https://github.com/r3bl-org/shorty/issues |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Shorty",
"description": "URL Shortener",
"version": "2.1",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_title": "Click to shorten URL",
"default_popup": "index.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "MacCtrl+Shift+P"
},
"description": "Shortens URL in address bar"
}
},
"permissions": [
"clipboardWrite",
"activeTab"
],
"host_permissions": [
"*:\/\/*.tinyurl.com\/*"
]
} | |