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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}