cocopy
a chrome extension to copy text by your code.
cocopyคืออะไร?
cocopy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pokutuna และคุณลักษณะหลักของมันคือ "a chrome extension to copy text by your code."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย cocopy
ดาวน์โหลดไฟล์ส่วนขยาย cocopy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*" ] } ] } |