Short Copy

Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.

O que é Short Copy?

Short Copy é uma extensão do Chrome desenvolvida por https://theodo.red, e sua principal característica é "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Short Copy

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

                        A very simple Chrome extension which enables you to copy the current url, and have it quickly shortened, in one easy key combination.

Perfect if you're just like me, and you hate yourself when you share a huge 100+ character URL with someone. Keep it clean, keep it simple. Alt+Shift+C.


[UPDATE] Switched to using is.gd due to their brilliantly simple API.

Scissor element of icon from: https://icons8.com/                    

Informações Básicas da Extensão

Nome Short Copy Short Copy
ID ehelhgbbjhjbfaleajkhjbdpomnbnkob
URL Oficial https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob
Descrição Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Tamanho do Arquivo 12.63 KB
Contagem de Instalações 48
Versão Atual 1.1.1
Última Atualização 2016-06-09
Data de Publicação 2016-06-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://theodo.red
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Short Copy",
    "version": "1.1.1",
    "description": "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.",
    "permissions": [
        "https:\/\/*.is.gd\/*",
        "clipboardWrite",
        "activeTab",
        "notifications"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "commands": {
        "toggle-pin": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Copies the URL."
        }
    },
    "manifest_version": 2
}