BitLy
Shorten links quick and easy
Что такое BitLy?
BitLy - это расширение Chrome, разработанное matzondervan, и его основная функция - "Shorten links quick and easy".
Снимки экрана расширения
Скачать файл CRX расширения BitLy
Скачайте файлы расширений BitLy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Updated to use bitly api V4 And the api key is now synced by your google account * Make right-click on the link to shorten contents of a "href" attribute * Make right-click on the selected text to treat it as link and shorten it * To shorten current tab's URL click extension's button located on the right from address bar Short URL will be automatically copied to the clipboard. Code can be found on Github: https://github.com/Matthijz98/Url-shortener-chome-extension
Основная информация о расширении
Название | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
Официальный URL | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
Описание | Shorten links quick and easy |
Размер файла | 13.11 KB |
Количество установок | 9,501 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2023-07-14 |
Дата публикации | 2017-04-16 |
Рейтинг | 4.38/5 Всего 16 оценок |
Разработчик | matzondervan |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Matthijz98/Url-shortener-chome-extension |
URL страницы помощи | https://github.com/Matthijz98/Url-shortener-chome-extension |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BitLy", "version": "0.1.0", "description": "Shorten links quick and easy", "background": { "service_worker": "background.js" }, "options_page": "options.html", "icons": { "16": "icons\/bitly_16.png", "32": "icons\/bitly_32.png", "48": "icons\/bitly_32.png", "128": "icons\/bitly_32.png" }, "permissions": [ "tabs", "contextMenus", "storage", "scripting" ], "action": { "default_icon": "icons\/bitly_16.png", "default_popup": "popup.html", "default_title": "Shorten links quick and easy" }, "host_permissions": [ "*:\/\/*\/*" ] } |