Personal Clipboard

Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.

什么是Personal Clipboard?

Personal Clipboard是由hardlyrichie开发的Chrome扩展程序,该扩展的主要功能是“Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.”。

扩展截图

screenshot
screenshot

下载Personal Clipboard扩展crx文件

下载Personal Clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Features:
- Copy and paste text, emojis, ASCII, text art into personal clipboard for future use
- Copies saved text when item is clicked
- Add or delete items and pages
- Expand animation when hovering over items that overflow
- Quickly access clipboard with shortcut "Alt + C"                    

扩展基本信息

名称 Personal Clipboard Personal Clipboard
ID hgepghkbaemgjfgegdmffllpgapbngmb
官方URL https://chrome.google.com/webstore/detail/personal-clipboard/hgepghkbaemgjfgegdmffllpgapbngmb
简介 Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.
文件大小 15.68 KB
安装次数 10
当前版本 1.0.1
更新时间 2018-03-13
上架时间 2018-03-13
开发者 hardlyrichie
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Personal Clipboard",
    "description": "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII\/Text Art to and from.",
    "author": "Richard Gao",
    "version": "1.0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Open Clipboard"
        }
    },
    "icons": {
        "16": "clipboard16.png",
        "48": "clipboard48.png",
        "128": "clipboard128.png"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "unlimitedStorage"
    ]
}