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.」です。
拡張機能のスクリーンショット
Personal Clipboard拡張機能のCRXファイルをダウンロード
Personal Clipboard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |