Personal Clipboard

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

Apa itu Personal Clipboard?

Personal Clipboard adalah ekstensi Chrome yang dikembangkan oleh hardlyrichie, dan fitur utamanya adalah "Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Personal Clipboard

Unduh file ekstensi Personal Clipboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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"                    

Informasi Dasar Ekstensi

Nama Personal Clipboard Personal Clipboard
ID hgepghkbaemgjfgegdmffllpgapbngmb
URL Resmi https://chrome.google.com/webstore/detail/personal-clipboard/hgepghkbaemgjfgegdmffllpgapbngmb
Deskripsi Creates an editable clipboard to copy and paste Characters, Text, Emojis, ASCII/Text Art to and from.
Ukuran File 15.68 KB
Jumlah Instalasi 10
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2018-03-13
Tanggal Publikasi 2018-03-13
Pengembang hardlyrichie
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}