Personal Clipboard

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

What is Personal Clipboard?

Personal Clipboard is a Chrome extension developed by hardlyrichie, and its main feature is "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.".

Extension Screenshots

screenshot
screenshot

Download Personal Clipboard Extension CRX File

Download Personal Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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"                    

Extension Basic Information

Name Personal Clipboard Personal Clipboard
ID hgepghkbaemgjfgegdmffllpgapbngmb
Official URL https://chrome.google.com/webstore/detail/personal-clipboard/hgepghkbaemgjfgegdmffllpgapbngmb
Description Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.
File Size 15.68 KB
Installation Count 10
Current Version 1.0.1
Last Updated 2018-03-13
Publish Date 2018-03-13
Developer hardlyrichie
Payment Type free
Supported Languages 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"
    ]
}