Clipboard History
Extension to save history of copied text in browser
Clipboard Historyとは何ですか?
Clipboard HistoryはSaif Asによって開発されたChromeの拡張機能で、その主な機能は「Extension to save history of copied text in browser」です。
拡張機能のスクリーンショット
Clipboard History拡張機能のCRXファイルをダウンロード
Clipboard History拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
it saves each item copied on the clipboard allowing access to any of those items at any time later.
Features:
● Hovering on one item will show all the text content in the tooltip
● Clicking on one item will copy the text to clipboard
● Searching for text will search all the items for matching text
● Clicking on the X button near each item will delete the item from the list
● Clicking on clear saved text will clear all the saved text
Isn't working as expected?
Please send me mail to: [email protected] 拡張機能の基本情報
| 名前 | |
| ID | mhokbaagmjlbflncohdhinppihlojpco |
| 公式URL | https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco |
| 説明 | Extension to save history of copied text in browser |
| ファイルサイズ | 177 KB |
| インストール数 | 1,677 |
| 現在のバージョン | 1.5 |
| 最終更新日 | 2021-11-01 |
| 公開日 | 2020-07-15 |
| 評価 | 2.33/5 合計 3 レビュー |
| 開発者 | Saif As |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Clipboard History",
"version": "1.5",
"description": "Extension to save history of copied text in browser",
"permissions": [
"storage"
],
"icons": {
"128": "icons\/icon128.png",
"256": "icons\/icon256.png",
"512": "icons\/icon512.png"
},
"action": {
"default_icon": "icons\/icon512.png",
"default_popup": "src\/browser_actions\/popup.html",
"default_title": "Clipboard History"
},
"background": {
"service_worker": "src\/bg\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"src\/browser_actions\/content.js"
]
}
]
} | |