Permanent clipboard
Allows you to store and access multiple elements in clipboard
Permanent clipboard란 무엇입니까?
Permanent clipboard은(는) https://bartosz.im/permanent-clipboard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to store and access multiple elements in clipboard"입니다.
확장 프로그램 스크린샷
Permanent clipboard 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How many times you wanted to keep important, but hard to remember, information at your mouse click without leaving the browser? Now you can achieve it with Permanent clipboard. This extensions allows you to save browser clipboard element with friendly name at your fingertips. Now you can store things like phone number, answer templates for discussion forums or bank account numbers.
확장 프로그램 기본 정보
이름 | Permanent clipboard |
ID | hilkjcfodmbdgpadbpehimibheopoccb |
공식 URL | https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb |
설명 | Allows you to store and access multiple elements in clipboard |
파일 크기 | 1.23 MB |
설치 횟수 | 63,730 |
현재 버전 | 2.5.5 |
최근 업데이트 | 2021-10-19 |
출시 날짜 | 2020-05-12 |
평점 | 4.30/5 총 209 개의 평점 |
개발자 | https://bartosz.im/permanent-clipboard |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/przybylski/permanent-clipboard/issues |
개인정보 보호 정책 페이지 URL | https://permanent-clipboard.app/privacy |
지원되는 언어 | de,en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "constants.js", "analytics.js", "storage.js", "background.js" ] }, "browser_action": { "default_icon": { "38": "img\/icon-38.png", "19": "img\/icon-19.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "constants.js", "contentscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true } ], "default_locale": "en", "description": "__MSG_extensionDescription__", "icons": { "128": "img\/icon-128.png", "16": "img\/icon-16.png" }, "manifest_version": 2, "name": "__MSG_extensionName__", "options_page": "options.html", "permissions": [ "storage", "contextMenus", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "version": "2.5.5", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |