cocopy
a chrome extension to copy text by your code.
cocopy란 무엇입니까?
cocopy은(는) pokutuna에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a chrome extension to copy text by your code."입니다.
확장 프로그램 스크린샷
cocopy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can copy web pages as Markdown, HTML, and any other formats as you wish by writing JavaScript. # v0.4.0 (2022-05-24) - New Feature: modifier keys. Now you can change the behavior of a function using modifier keys. Visit the README https://github.com/pokutuna/chrome-cocopy/blob/master/README.md - Replace Preact with React. Bundles are larger but replaced for ease of development. - Update dependencies. # v0.3.0 (2022-02-18) - *BETA* Returning { "html": "...", "text": "..." } to copy as rich text & plain text. This interface may change in future. - Update dependencies.
확장 프로그램 기본 정보
이름 | cocopy |
ID | ihnfodlbkhgjnbheemjhkjfkfglgbdgc |
공식 URL | https://chromewebstore.google.com/detail/cocopy/ihnfodlbkhgjnbheemjhkjfkfglgbdgc |
설명 | a chrome extension to copy text by your code. |
파일 크기 | 2.14 MB |
설치 횟수 | 859 |
현재 버전 | Build v0.4.0 |
최근 업데이트 | 2022-05-25 |
출시 날짜 | 2020-09-22 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | pokutuna |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/pokutuna/chrome-cocopy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "cocopy", "version": "0.4.0", "version_name": "Build v0.4.0", "description": "a chrome extension to copy text by your code.", "icons": { "16": "img\/icon\/16.png", "48": "img\/icon\/48.png", "128": "img\/icon\/128.png" }, "action": { "default_icon": "img\/icon\/32.png", "default_title": "COCOPY", "default_popup": "popup.html" }, "options_page": "options.html", "sandbox": { "pages": [ "sandbox.html" ] }, "permissions": [ "activeTab", "storage", "scripting", "clipboardWrite" ], "commands": { "_execute_action": { "description": "open cocopy", "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Ctrl+Shift+L", "windows": "Ctrl+Shift+L", "linux": "Ctrl+Shift+L" } } }, "web_accessible_resources": [ { "resources": [ "options.html" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/us-central1-cocopy.cloudfunctions.net\/*" ] } ] } |