Short Copy

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

什麼是Short Copy?

Short Copy是由https://theodo.red開發的Chrome擴展程式,該擴展的主要功能是“Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.”。

擴展截圖

screenshot

下載Short Copy擴展crx文件

下載Short Copy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Short Copy Short Copy
ID ehelhgbbjhjbfaleajkhjbdpomnbnkob
官方網址 https://chromewebstore.google.com/detail/short-copy/ehelhgbbjhjbfaleajkhjbdpomnbnkob
簡介 Creates a keyboard shortcut (Alt + Shift + C) to shorten the URL of the current tab and copy it to your clipboard.
檔案大小 12.63 KB
安裝次數 48
目前版本 1.1.1
更新時間 2016-06-09
上架時間 2016-06-09
評分 5.00/5 共 1 次評分
開發者 https://theodo.red
付費類型 free
支援的語言 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
}