BitLy
Shorten links quick and easy
Vad är BitLy?
BitLy är en Chrome-tillägg utvecklad av matzondervan, och dess huvudfunktion är "Shorten links quick and easy".
Tilläggsskärmbilder
Ladda ner BitLy-förlängningens CRX-fil
Ladda ner BitLy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
Officiell webbadress | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
Beskrivning | Shorten links quick and easy |
Filstorlek | 13.11 KB |
Antal Installationer | 9,501 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2023-07-14 |
Publiceringsdatum | 2017-04-16 |
Betyg | 4.38/5 Totalt 16 Betyg |
Utvecklare | matzondervan |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Matthijz98/Url-shortener-chome-extension |
Hjälpsida URL | https://github.com/Matthijz98/Url-shortener-chome-extension |
Stödda Språk | 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": [ "*:\/\/*\/*" ] } |