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
官方URL 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
}