Personal Clipboard

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

Wat is Personal Clipboard?

Personal Clipboard is een Chrome-extensie ontwikkeld door hardlyrichie, en de belangrijkste functie is "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Personal Clipboard

Download Personal Clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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"                    

Basisinformatie over de Extensie

Naam Personal Clipboard Personal Clipboard
ID hgepghkbaemgjfgegdmffllpgapbngmb
Officiële URL https://chrome.google.com/webstore/detail/personal-clipboard/hgepghkbaemgjfgegdmffllpgapbngmb
Beschrijving Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.
Bestandsgrootte 15.68 KB
Aantal Installaties 10
Huidige Versie 1.0.1
Laatst Bijgewerkt 2018-03-13
Publicatiedatum 2018-03-13
Ontwikkelaar hardlyrichie
Betalingswijze free
Ondersteunde Talen 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"
    ]
}