Short Copy

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

Cos'è Short Copy?

Short Copy è un'estensione di Chrome sviluppata da https://theodo.red, e la sua funzione principale è "Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Short Copy

Scarica i file di estensione Short Copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Short Copy Short Copy
ID ehelhgbbjhjbfaleajkhjbdpomnbnkob
URL Ufficiale https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob
Descrizione Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Dimensione del File 12.63 KB
Conteggio Installazioni 48
Versione Corrente 1.1.1
Ultimo Aggiornamento 2016-06-09
Data di Pubblicazione 2016-06-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://theodo.red
Tipo di Pagamento free
Lingue Supportate 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
}