Url Shortener

Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url

Was ist Url Shortener?

Url Shortener ist eine Chrome-Erweiterung, die von https://thebyteseffect.com entwickelt wurde, und ihr Hauptmerkmal ist "Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Url Shortener-Erweiterungs-CRX-Datei herunterladen

Laden Sie Url Shortener-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Shorten URLs with tinyurl.com, bit.ly, cutt.ly, v.gd, tny.im, is.gd, and v.gd. Get QR code for shortened URLs

You can shorten the URL of the current page you are viewing or a specific URL by clicking the extension icon or pasting it into the extension input bar.

The extension has been made open source. The source code can be found at https://github.com/tonystark93/URL-shortener-extension

Shorten URL using various providers
*  tinyurl.com
*  bit.ly
*  cutt.ly
*  is.gd
*  v.gd
*  tny.im

🔒 Privacy focused (We don't ask for unnecessary permissions or track the users while using the extension)

List of features available
✓  Copy to clipboard
✓  Night Mode
✓  Right Click
✓  QR Code Generate
✓  Automatic URL shortening on extension click
✓  History of URL shortened
✓  Delete History
✓  Export as CSV option
✓  Change keyboard shortcuts                    

Grundlegende Informationen zur Erweiterung

Name Url Shortener Url Shortener
ID godoifjoiadanijplaghmhgfeffnblib
Offizielle URL https://chromewebstore.google.com/detail/url-shortener/godoifjoiadanijplaghmhgfeffnblib
Beschreibung Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url
Dateigröße 74.62 KB
Installationsanzahl 75,840
Aktuelle Version 14.0.5
Letztes Update 2024-01-22
Veröffentlichungsdatum 2020-05-18
Bewertung 4.88/5 Insgesamt 265 Bewertungen
Entwickler https://thebyteseffect.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://thebyteseffect.com/posts/features-of-url-shortener-extension.1/
Unterstützte Sprachen en
manifest.json
{
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "options_page": "options.html",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Url Shortener",
    "version": "14.0.5",
    "manifest_version": 3,
    "description": "Create and share short links using tinyurl, bit.ly, cutt.ly, is.gd, v.gd, tny.im and also generate QR code for shortened Url",
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "scripting"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "mac": "Command+Shift+L",
                "default": "Ctrl+Shift+L"
            }
        }
    },
    "host_permissions": [
        "https:\/\/tinyurl.com\/*"
    ]
}