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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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]
확장 프로그램 기본 정보
이름 | Clipboard History |
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 |
이메일 | [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" ] } ] } |