BitLy

Shorten links quick and easy

O que é BitLy?

BitLy é uma extensão do Chrome desenvolvida por matzondervan, e sua principal característica é "Shorten links quick and easy".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão BitLy

Baixe arquivos de extensão BitLy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
URL Oficial https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
Descrição Shorten links quick and easy
Tamanho do Arquivo 13.11 KB
Contagem de Instalações 9,501
Versão Atual 0.1.0
Última Atualização 2023-07-14
Data de Publicação 2017-04-16
Classificação 4.38/5 Total de 16 Avaliações
Desenvolvedor matzondervan
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Matthijz98/Url-shortener-chome-extension
URL da Página de Ajuda https://github.com/Matthijz98/Url-shortener-chome-extension
Idiomas Suportados 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": [
        "*:\/\/*\/*"
    ]
}