Personal Clipboard

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

Cos'è Personal Clipboard?

Personal Clipboard è un'estensione di Chrome sviluppata da hardlyrichie, e la sua funzione principale è "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Personal Clipboard

Scarica i file di estensione Personal Clipboard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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"                    

Informazioni di Base sull'Estensione

Nome Personal Clipboard Personal Clipboard
ID hgepghkbaemgjfgegdmffllpgapbngmb
URL Ufficiale https://chrome.google.com/webstore/detail/personal-clipboard/hgepghkbaemgjfgegdmffllpgapbngmb
Descrizione Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.
Dimensione del File 15.68 KB
Conteggio Installazioni 10
Versione Corrente 1.0.1
Ultimo Aggiornamento 2018-03-13
Data di Pubblicazione 2018-03-13
Sviluppatore hardlyrichie
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}