Chromerly URL-shortener

Chromerly is a simple yet featureful URL-shortener extension.

O que é Chromerly URL-shortener?

Chromerly URL-shortener é uma extensão do Chrome desenvolvida por Ville Lahdenvuo, e sua principal característica é "Chromerly is a simple yet featureful URL-shortener extension.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Chromerly URL-shortener

Baixe arquivos de extensão Chromerly 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

                        We all hate those long auto-generated links that we see every day. So I made this simple extension to easily shorten those links and making sharing things a breeze.

Features:
 * Simple icon to click to shorten tab's url
 * Context menu to shorten page, image, link, selection, video or even audio urls
 * Urly keyword in the omnibox to shorten any url you want
 * NEW: You can now block shortened links and redirect to info page instead!
 * NEW: Chromerly now supports Web Intents!

If you want to know exactly how this extension works, take a look at the source code! This is an open source project.                    

Informações Básicas da Extensão

Nome Chromerly URL-shortener Chromerly URL-shortener
ID ebfkcfgnlbfdnjfpoegigihcijkmnpee
URL Oficial https://chromewebstore.google.com/detail/chromerly-url-shortener/ebfkcfgnlbfdnjfpoegigihcijkmnpee
Descrição Chromerly is a simple yet featureful URL-shortener extension.
Tamanho do Arquivo 99.36 KB
Contagem de Instalações 429
Versão Atual 2.1
Última Atualização 2012-07-07
Data de Publicação 2012-07-07
Classificação 4.11/5 Total de 19 Avaliações
Desenvolvedor Ville Lahdenvuo
Tipo de Pagamento free
URL da Página de Ajuda http://github.com/tuhoojabotti/Chromerly-URL-shortener
Idiomas Suportados en,fi
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDesc__",
    "version": "2.1",
    "manifest_version": 2,
    "default_locale": "en",
    "homepage_url": "http:\/\/github.com\/tuhoojabotti\/Chromerly-URL-shortener",
    "minimum_chrome_version": "19",
    "permissions": [
        "",
        "tabs",
        "notifications",
        "contextMenus",
        "clipboardWrite"
    ],
    "optional_permissions": [
        "webRequest",
        "webRequestBlocking"
    ],
    "options_page": "options\/options.html",
    "icons": {
        "16": "graphics\/16.png",
        "48": "graphics\/48.png",
        "128": "graphics\/128.png"
    },
    "intents": {
        "http:\/\/webintents.org\/shorten": {
            "type": [
                "text\/uri-list"
            ],
            "href": "intent\/intent.html",
            "title": "Shorten with Chromerly",
            "disposition": "inline"
        }
    },
    "background": {
        "page": "background.html"
    },
    "omnibox": {
        "keyword": "urly"
    },
    "page_action": {
        "default_icon": "graphics\/16.png",
        "default_title": "__MSG_UrlyShorten__"
    }
}