URL Shortener

Shortens URLs with various services.

O que é URL Shortener?

URL Shortener é uma extensão do Chrome desenvolvida por Klaus Eckelt, e sua principal característica é "Shortens URLs with various services.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão URL Shortener

Baixe arquivos de extensão URL Shortener no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        By clicking the extension's button the URL of the current Tab is used to create a shorter one.
The short URL will be displayed and automatically copied to your clipboard.

Services:
‣ anonym.to
‣ goo.gl
‣ is.gd
‣ t1p.de
‣ tinyurl.com:

Permissions:
‣ Access to anonym.to, is.gd, t1p.de, tinyurl.com googleapis.com: To use the services.
‣ Read browsing history: to read the current tab's URL. 
‣ Clipboard write to copy the shortened URL.

‣ Extension source code: https://bitbucket.org/keckelt/url-shorten-extension                    

Informações Básicas da Extensão

Nome URL Shortener URL Shortener
ID ecoljajakaeclkkcakoamigglloihgao
URL Oficial https://chromewebstore.google.com/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao
Descrição Shortens URLs with various services.
Tamanho do Arquivo 188 KB
Contagem de Instalações 1,873
Versão Atual 2.2
Última Atualização 2016-07-11
Data de Publicação 2016-07-11
Classificação 4.71/5 Total de 17 Avaliações
Desenvolvedor Klaus Eckelt
Tipo de Pagamento free
Site da Extensão https://bitbucket.org/keckelt/url-shorten-extension
URL da Página de Ajuda https://chrome.google.com/webstore/detail/url-shortener/ecoljajakaeclkkcakoamigglloihgao/support
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Shortener",
    "description": "Shortens URLs with various services.",
    "version": "2.2",
    "author": "eckelt.info",
    "icons": {
        "16": "style\/images\/icon1\/icon-16.png",
        "19": "style\/images\/icon1\/icon-19.png",
        "32": "style\/images\/icon1\/icon-32.png",
        "38": "style\/images\/icon1\/icon-38.png",
        "48": "style\/images\/icon1\/icon-48.png",
        "64": "style\/images\/icon1\/icon-64.png",
        "128": "style\/images\/icon1\/icon-128.png",
        "256": "style\/images\/icon1\/icon-256.png"
    },
    "permissions": [
        "http:\/\/anonym.to\/",
        "https:\/\/www.googleapis.com\/urlshortener\/",
        "http:\/\/is.gd\/",
        "https:\/\/is.gd\/",
        "http:\/\/t1p.de\/",
        "http:\/\/tinyurl.com\/",
        "tabs",
        "clipboardWrite",
        "storage"
    ],
    "browser_action": {
        "default_title": "Click to shorten URL.",
        "default_icon": {
            "19": "style\/images\/icon1\/icon-19.png",
            "38": "style\/images\/icon1\/icon-38.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}