Short Copy

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

Co je Short Copy?

Short Copy je rozšíření Chrome vyvinuté https://theodo.red, a jeho hlavní funkcí je „Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Short Copy

Stáhněte si soubory rozšíření Short Copy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Short Copy Short Copy
ID ehelhgbbjhjbfaleajkhjbdpomnbnkob
Oficiální URL https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob
Popis Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
Velikost souboru 12.63 KB
Počet instalací 48
Aktuální Verze 1.1.1
Poslední Aktualizace 2016-06-09
Datum Vydání 2016-06-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://theodo.red
Typ Platby free
Podporované Jazyky 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
}