BitLy

Shorten links quick and easy

Co to jest BitLy?

BitLy to rozszerzenie Chrome opracowane przez matzondervan, a jego główną funkcją jest „Shorten links quick and easy”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BitLy

Pobierz pliki rozszerzeń BitLy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
Oficjalny URL https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
Opis Shorten links quick and easy
Rozmiar pliku 13.11 KB
Liczba instalacji 9,501
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2023-07-14
Data Publikacji 2017-04-16
Ocena 4.38/5 Łącznie 16 Oceny
Deweloper matzondervan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Matthijz98/Url-shortener-chome-extension
Adres URL Strony Pomocy https://github.com/Matthijz98/Url-shortener-chome-extension
Obsługiwane Języki 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": [
        "*:\/\/*\/*"
    ]
}