Get Links

Quickly get url from selected link

O que é Get Links?

Get Links é uma extensão do Chrome desenvolvida por Kaffeine, e sua principal característica é "Quickly get url from selected link".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Get Links

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

                        Sometimes its annoying opening all link one by one to get the complete url,
this extension copy all url from a selection on a website page.                    

Informações Básicas da Extensão

Nome Get Links Get Links
ID cmcenhpehcokkhgamlekcbgdlejddplp
URL Oficial https://chrome.google.com/webstore/detail/get-links/cmcenhpehcokkhgamlekcbgdlejddplp
Descrição Quickly get url from selected link
Tamanho do Arquivo 18.9 KB
Contagem de Instalações 390
Versão Atual 0.2
Última Atualização 2015-01-25
Data de Publicação 2015-01-25
Classificação 1.50/5 Total de 2 Avaliações
Desenvolvedor Kaffeine
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "contextScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Quickly get url from selected link",
    "manifest_version": 2,
    "name": "Get Links",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "clipboardWrite",
        "clipboardRead"
    ],
    "version": "0.2",
    "icons": {
        "16": "icon-bitty.png",
        "48": "icon-small.png",
        "128": "icon-large.png"
    },
    "browser_action": {
        "default_icon": "icon-large.png",
        "default_title": "Get Links"
    }
}