BitLy
Shorten links quick and easy
What is BitLy?
BitLy is a Chrome extension developed by matzondervan, and its main feature is "Shorten links quick and easy".
Extension Screenshots
Download BitLy Extension CRX File
Download BitLy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | BitLy |
ID | odilpbnahibaonlfnciocdfdlilfigco |
Official URL | https://chromewebstore.google.com/detail/bitly/odilpbnahibaonlfnciocdfdlilfigco |
Description | Shorten links quick and easy |
File Size | 13.11 KB |
Installation Count | 9,501 |
Current Version | 0.1.0 |
Last Updated | 2023-07-14 |
Publish Date | 2017-04-16 |
Rating | 4.38/5 Total 16 Ratings |
Developer | matzondervan |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Matthijz98/Url-shortener-chome-extension |
Help Page URL | https://github.com/Matthijz98/Url-shortener-chome-extension |
Supported Languages | 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": [ "*:\/\/*\/*" ] } |