Shortlink Finder

Displays an icon if the current page has an official shortlink and makes it easy to copy!

O que é Shortlink Finder?

Shortlink Finder é uma extensão do Chrome desenvolvida por http://joe.gl, e sua principal característica é "Displays an icon if the current page has an official shortlink and makes it easy to copy!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shortlink Finder

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

                        Displays an icon if the current page has an official short link/URL and makes it easy to copy!                    

Informações Básicas da Extensão

Nome Shortlink Finder Shortlink Finder
ID gjbgaoobcdohajkkcanaemikngkaojbk
URL Oficial https://chrome.google.com/webstore/detail/shortlink-finder/gjbgaoobcdohajkkcanaemikngkaojbk
Descrição Displays an icon if the current page has an official shortlink and makes it easy to copy!
Tamanho do Arquivo 42.51 KB
Contagem de Instalações 23
Versão Atual 1.1
Última Atualização 2014-07-11
Data de Publicação 2014-07-11
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor http://joe.gl
Tipo de Pagamento free
Site da Extensão https://github.com/glombek/ShortlinkExtension
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortlink Finder",
    "version": "1.1",
    "description": "Displays an icon if the current page has an official shortlink and makes it easy to copy!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon-19.png",
        "default_title": "Get Shortlink",
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "clipboardWrite"
    ],
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}