BitLy

Shorten links quick and easy

Was ist BitLy?

BitLy ist eine Chrome-Erweiterung, die von matzondervan entwickelt wurde, und ihr Hauptmerkmal ist "Shorten links quick and easy".

Erweiterungsscreenshots

screenshot

BitLy-Erweiterungs-CRX-Datei herunterladen

Laden Sie BitLy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
Offizielle URL https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
Beschreibung Shorten links quick and easy
Dateigröße 13.11 KB
Installationsanzahl 9,501
Aktuelle Version 0.1.0
Letztes Update 2023-07-14
Veröffentlichungsdatum 2017-04-16
Bewertung 4.38/5 Insgesamt 16 Bewertungen
Entwickler matzondervan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Matthijz98/Url-shortener-chome-extension
Hilfeseite URL https://github.com/Matthijz98/Url-shortener-chome-extension
Unterstützte Sprachen 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": [
        "*:\/\/*\/*"
    ]
}