Clicker

Extension for getting current url in short form via clck.ru service

O que é Clicker?

Clicker é uma extensão do Chrome desenvolvida por Ray, e sua principal característica é "Extension for getting current url in short form via clck.ru service".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Clicker

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

                        With this extension you can get current url of opened tab in short form via clck.ru service.(Thanks Bobuk for this nice service)

Changes in v0.2:
1) Clicker icon have transparent background
2) Short link is automatically copied to the clipboard

Changes in v0.3:
If select any part of text on the page and to call the Clicker extension, then selected text with short link will be copied in Clicker's input field and all this will be copied into the clipboard.
If not selected nothing, then will be copied only short link.

Clicker v0.3.2 - small bugfix.
Clicker v0.3.4 - small fix.
Clicker v0.3.4.1 - manifest updates.                    

Informações Básicas da Extensão

Nome Clicker Clicker
ID oonhhnhddmkflmkhoekflgloclaedocn
URL Oficial https://chromewebstore.google.com/detail/clicker/oonhhnhddmkflmkhoekflgloclaedocn
Descrição Extension for getting current url in short form via clck.ru service
Tamanho do Arquivo 32.98 KB
Contagem de Instalações 445
Versão Atual 0.3.4.1
Última Atualização 2013-06-26
Data de Publicação 2013-06-25
Classificação 4.15/5 Total de 20 Avaliações
Desenvolvedor Ray
Tipo de Pagamento free
URL da Página de Ajuda http://twitter.com/i__Ray
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clicker",
    "version": "0.3.4.1",
    "description": "Extension for getting current url in short form via clck.ru service",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}