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 |
| 官方網址 | 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"
]
} | |