Chilp.it URL Shortener

This extension helps to shrink your large URLs.

Was ist Chilp.it URL Shortener?

Chilp.it URL Shortener ist eine Chrome-Erweiterung, die von Chilp Media Group entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps to shrink your large URLs.".

Erweiterungsscreenshots

screenshot

Chilp.it URL Shortener-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chilp.it 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

                        This is the official Chrome extension for the Chilp.it URL shortener. 

You can can create short URLs of the current page by clicking the extension symbol or
pressing the keyboard shortcut Alt+Shift+C.

You can create short URLs of all links in the page by right clicking and choosing "Create shortlink"
from the context menu.

Shortlinks will be copied to your clipboard instantly.

Happy shortening.                    

Grundlegende Informationen zur Erweiterung

Name Chilp.it URL Shortener Chilp.it URL Shortener
ID jdlddbgjpiammojoflhimhfbgindkblj
Offizielle URL https://chromewebstore.google.com/detail/chilpit-url-shortener/jdlddbgjpiammojoflhimhfbgindkblj
Beschreibung This extension helps to shrink your large URLs.
Dateigröße 26.56 KB
Installationsanzahl 43
Aktuelle Version 1.0
Letztes Update 2017-01-03
Veröffentlichungsdatum 2017-01-03
Entwickler Chilp Media Group
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://chilp.it/tp.htm
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chilp.it URL Shortener",
    "description": "This extension helps to shrink your large URLs.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "chilpIcon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/chilp.it\/",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "16": "chilpIcon16.png",
        "128": "chilpIcon128.png"
    },
    "commands": {
        "copyPageShortlinkToClipboard": {
            "suggested_key": {
                "default": "Alt+Shift+C",
                "mac": "Alt+Shift+C"
            },
            "description": "shorten the current page url and copy the shortlink to the clipboard"
        }
    }
}