URL Shortener Extension

Create short URLs directly out of Chrome. This extension needs a valid [https://github.com/pawy/url_shortener] installation

¿Qué es URL Shortener Extension?

URL Shortener Extension es una extensión de Chrome desarrollada por Pascal Wyss, y su función principal es "Create short URLs directly out of Chrome. This extension needs a valid [https://github.com/pawy/url_shortener] installation".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión URL Shortener Extension

Descarga archivos de extensión URL Shortener Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Did you ever want to have your own url shortener service? With your own fancy url?
Instead of using the public services like goo.gl or bit.ly you can now have your own service with your very own domain!

All you need to do is to install the sUrl - Url shortener on your web server and you are ready to go. See: https://github.com/pawy/url_shortener

This Chrome extension enables you to shorten the currently open URL right out of your browser with just one click! 
Pretty easy eh?                    

Información Básica de la Extensión

Nombre URL Shortener Extension URL Shortener Extension
ID mmljapacfpbakplemojcdlncjcclobmg
URL Oficial https://chromewebstore.google.com/detail/url-shortener-extension/mmljapacfpbakplemojcdlncjcclobmg
Descripción Create short URLs directly out of Chrome. This extension needs a valid [https://github.com/pawy/url_shortener] installation
Tamaño del Archivo 62.62 KB
Cantidad de Instalaciones 99
Versión Actual 2.0.1
Última Actualización 2013-11-19
Fecha de Publicación 2013-11-19
Calificación 4.50/5 Total de 2 Calificaciones
Desarrollador Pascal Wyss
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/pawy/url_shortener
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Shortener Extension",
    "version": "2.0.1",
    "description": "Create short URLs directly out of Chrome. This extension needs a valid [https:\/\/github.com\/pawy\/url_shortener] installation",
    "page_action": {
        "default_icon": {
            "19": "icons\/icon_016.png",
            "38": "icons\/icon_038.png"
        },
        "default_title": "Shorten the URL",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "clipboardWrite",
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon_016.png",
        "48": "icons\/icon_048.png",
        "128": "icons\/icon_128.png"
    },
    "homepage_url": "https:\/\/github.com\/pawy\/url_shortener"
}