BitLy

Shorten links quick and easy

Qu'est-ce que BitLy ?

BitLy est une extension Chrome développée par matzondervan, et sa fonction principale est "Shorten links quick and easy".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BitLy

Téléchargez les fichiers d'extension BitLy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom BitLy BitLy
ID odilpbnahibaonlfnciocdfdlilfigco
URL Officiel https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco
Description Shorten links quick and easy
Taille du Fichier 13.11 KB
Nombre d'Installations 9,501
Version Actuelle 0.1.0
Dernière Mise à Jour 2023-07-14
Date de Publication 2017-04-16
Évaluation 4.38/5 Total 16 Évaluations
Développeur matzondervan
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Matthijz98/Url-shortener-chome-extension
URL de la Page d'Aide https://github.com/Matthijz98/Url-shortener-chome-extension
Langues Prises en Charge 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": [
        "*:\/\/*\/*"
    ]
}