Shorty
URL Shortener
What is Shorty?
Shorty is a Chrome extension developed by https://r3bl.com, and its main feature is "URL Shortener".
Extension Screenshots
Download Shorty Extension CRX File
Download Shorty 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
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
Extension Basic Information
Name | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
Official URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
Description | URL Shortener |
File Size | 120 KB |
Installation Count | 50 |
Current Version | 2.1 |
Last Updated | 2023-03-11 |
Publish Date | 2020-05-31 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://r3bl.com |
[email protected] | |
Payment Type | free |
Extension Website | http://r3bl.com |
Help Page URL | https://github.com/r3bl-org/shorty/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shorty", "description": "URL Shortener", "version": "2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "Click to shorten URL", "default_popup": "index.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "Shortens URL in address bar" } }, "permissions": [ "clipboardWrite", "activeTab" ], "host_permissions": [ "*:\/\/*.tinyurl.com\/*" ] } |