BitLy
Shorten links quick and easy
Cos'è BitLy?
BitLy è un'estensione di Chrome sviluppata da matzondervan, e la sua funzione principale è "Shorten links quick and easy".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BitLy
Scarica i file di estensione BitLy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
URL Ufficiale | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
Descrizione | Shorten links quick and easy |
Dimensione del File | 13.11 KB |
Conteggio Installazioni | 9,501 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2023-07-14 |
Data di Pubblicazione | 2017-04-16 |
Valutazione | 4.38/5 Totale 16 Valutazioni |
Sviluppatore | matzondervan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Matthijz98/Url-shortener-chome-extension |
URL della Pagina di Aiuto | https://github.com/Matthijz98/Url-shortener-chome-extension |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } |