Simple Paste Extension
Allows you to copy and paste customizable phrases!
Simple Paste Extension란 무엇입니까?
Simple Paste Extension은(는) Simple Paste Extension에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to copy and paste customizable phrases!"입니다.
확장 프로그램 스크린샷
Simple Paste Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Simple Paste Chrome Extension allows you to paste anything through your keyboard! Once you open your popup and press a keybind, the phrase will automatically copy and close the popup! If you want, you can customize the defaults (shown in the photo above!) by following the directions below. Update: In version 2.2.0, you can now click on the phrase you want copied on the popup, in addition to using your keyboard. How to use the extension: 1. Customize the phrases (what you want to copy) and the keybind (the button you press to automatically copy the phrase) at chrome-extension://jbfmdblhfaookljgkjlcnhfachcfegei/customize.html 2. Press save 3. Press Ctrl + M (this can be changed at chrome://extensions/shortcuts) 4. Press the keybind associated with the phrase you want to copy 5. Paste it wherever you want! I hope you find this extension useful! Leave a review to help out if the extension was useful! If you have questions, suggestions, or problems go to the 'Support' tab.
확장 프로그램 기본 정보
이름 | Simple Paste Extension |
ID | jbfmdblhfaookljgkjlcnhfachcfegei |
공식 URL | https://chromewebstore.google.com/detail/simple-paste-extension/jbfmdblhfaookljgkjlcnhfachcfegei |
설명 | Allows you to copy and paste customizable phrases! |
파일 크기 | 108 KB |
설치 횟수 | 742 |
현재 버전 | 2.2.1 |
최근 업데이트 | 2021-08-19 |
출시 날짜 | 2020-10-23 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Simple Paste Extension |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Paste Extension", "version": "2.2.1", "description": "Allows you to copy and paste customizable phrases!", "browser_action": { "default_icon": "SimplePaste128.png", "default_popup": "popup.html" }, "permissions": [ "storage", "unlimitedStorage" ], "icons": { "16": "SimplePaste16.png", "32": "SimplePaste32.png", "48": "SimplePaste48.png", "128": "SimplePaste128.png" }, "background": { "scripts": [ "background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl + M", "mac": "Ctrl + M", "chromeos": "Ctrl + M", "linux": "Ctrl + M" } } } } |