Shorty
URL Shortener
Hvad er Shorty?
Shorty er en Chrome-udvidelse udviklet af https://r3bl.com, og dens hovedfunktion er "URL Shortener".
Udvidelsesskærmbilleder
Download Shorty-udvidelses-CRX-fil
Download Shorty-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.
Grundlæggende oplysninger om udvidelsen
Navn | Shorty |
ID | cbgcnhimnlnjejdopldfdicfingmaijg |
Officiel URL | https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg |
Beskrivelse | URL Shortener |
Filstørrelse | 120 KB |
Antal Installationer | 50 |
Nuværende Version | 2.1 |
Senest Opdateret | 2023-03-11 |
Udgivelsesdato | 2020-05-31 |
Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
Udvikler | https://r3bl.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://r3bl.com |
Hjælpeside-URL | https://github.com/r3bl-org/shorty/issues |
Understøttede Sprog | 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\/*" ] } |