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ファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |