Patchwork
DMs for the Internet.
Patchwork란 무엇입니까?
Patchwork은(는) https://joinpatchwork.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DMs for the Internet."입니다.
확장 프로그램 스크린샷
Patchwork 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Welcome to a better way of sharing on the web. It all starts with “a patch”. Think of a patch as an evolved hyperlink that can take you to a specific piece of information on a page, along with a note left behind by the sender. No more scrolling around to find a piece of information that a sender is referencing. Then, you can easily respond to patches with our in-browser chat window, so you never have to leave your workflow to conversate with friends or co-workers again. Trying to share a patch with someone without the extension? No problem. Just choose to email them your patch instead. Your patch will be sent to them along with an invite to join you on Patchwork. We strive to make sharing on the web faster and more fun than ever before. We hope you like patching as much as we do! :) Enjoy! -Patch Team
확장 프로그램 기본 정보
이름 | Patchwork |
ID | ldchpoolcglfgbdokndjdcnmfcfngpba |
공식 URL | https://chromewebstore.google.com/detail/patchwork/ldchpoolcglfgbdokndjdcnmfcfngpba |
설명 | DMs for the Internet. |
파일 크기 | 188 KB |
설치 횟수 | 57 |
현재 버전 | 0.6.3 |
최근 업데이트 | 2022-11-28 |
출시 날짜 | 2021-11-12 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | https://joinpatchwork.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.joinpatchwork.com |
개인정보 보호 정책 페이지 URL | https://www.joinpatchwork.com/legal/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Patchwork", "description": "DMs for the Internet.", "version": "0.6.3", "background": { "service_worker": "build\/background.js" }, "icons": { "16": "assets\/icon.png", "32": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Patchwork", "default_icon": { "16": "assets\/icon.png", "32": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } }, "commands": { "share-selection": { "suggested_key": "Ctrl+Shift+Period", "description": "Share the current selection" } }, "permissions": [ "storage", "notifications", "contextMenus" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "https:\/\/patchwork.ngrok.io\/*", "https:\/\/app.joinpatchwork.com\/*" ], "css": [ "build\/patch.css" ], "js": [ "build\/script.js" ] } ], "manifest_version": 3, "web_accessible_resources": [ { "resources": [ "index.html", "patch.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/localhost:3000\/*" ] } ], "externally_connectable": { "matches": [ "http:\/\/localhost:3000\/*", "https:\/\/*.joinpatchwork.com\/*" ] } } |