Shorty

URL Shortener

Wat is Shorty?

Shorty is een Chrome-extensie ontwikkeld door https://r3bl.com, en de belangrijkste functie is "URL Shortener".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Shorty

Download Shorty-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Shortens the current URL (using tinyurl.com) and copies it to the clipboard. Ctrl+Shift+P keyboard shortcut activates it.                    

Basisinformatie over de Extensie

Naam Shorty Shorty
ID cbgcnhimnlnjejdopldfdicfingmaijg
Officiële URL https://chromewebstore.google.com/detail/shorty/cbgcnhimnlnjejdopldfdicfingmaijg
Beschrijving URL Shortener
Bestandsgrootte 120 KB
Aantal Installaties 50
Huidige Versie 2.1
Laatst Bijgewerkt 2023-03-11
Publicatiedatum 2020-05-31
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar https://r3bl.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://r3bl.com
Help Pagina-URL https://github.com/r3bl-org/shorty/issues
Ondersteunde Talen 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\/*"
    ]
}