BitLy

Shorten links quick and easy

¿Qué es BitLy?

BitLy es una extensión de Chrome desarrollada por matzondervan, y su función principal es "Shorten links quick and easy".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión BitLy

Descarga archivos de extensión BitLy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
URL Oficial https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
Descripción Shorten links quick and easy
Tamaño del Archivo 13.11 KB
Cantidad de Instalaciones 9,501
Versión Actual 0.1.0
Última Actualización 2023-07-14
Fecha de Publicación 2017-04-16
Calificación 4.38/5 Total de 16 Calificaciones
Desarrollador matzondervan
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Matthijz98/Url-shortener-chome-extension
URL de la Página de Ayuda https://github.com/Matthijz98/Url-shortener-chome-extension
Idiomas Soportados 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": [
        "*:\/\/*\/*"
    ]
}