diff --git a/README.md b/README.md index e965e77..c544001 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ This repository contains the following plugins: | [🏠](https://github.com/hieuthi/joplin-plugin-container-with-classes) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.hieuthi.joplin.container-with-classes/plugin.jpl) | Container with Classes | 1.0.0 | Plugin for creating block-level containers with classes for customization | Hieu-Thi Luong | | [🏠](https://discourse.joplinapp.org/t/create-note-from-highlighted-text/12511) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/joplin.plugin.ambrt.convertToNewNote/plugin.jpl) | Convert Text To New Note | 1.5.1 | Converts highlighted text to new one in same folder | ambrt | | [🏠](https://github.com/hieuthi/joplin-plugin-copy-anchor-link) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.hieuthi.joplin.copy-anchor-link/plugin.jpl) | Copy Anchor Link | 1.1.0 | This plugin add several icons next to the note headings that you can click on to copy markdown link of the specific heading. | Hieu-Thi Luong | +| [🏠](https://github.com/LightAPIs/joplin-copy-code-blocks) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/com.joplin.copy.codeBlocks/plugin.jpl) | Copy Code Blocks | 1.0.0 | Add a copy button to the code blocks. | Light | | [🏠](https://discourse.joplinapp.org/t/copy-markdown-link-to-active-note/14402) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/joplin.plugin.ambrt.copyNoteLink/plugin.jpl) | Copy link to active note | 1.0.1 | Adds entry to right click menu in editor to get link to active note | a | | [🏠](https://discourse.joplinapp.org/t/go-to-note-tag-or-notebook-via-highlighting-text-in-editor/12731) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/joplin.plugin.ambrt.goToItem/plugin.jpl) | Create and go to #tags and @notebooks | 1.3.7 | Go to tag,notebook or note via links or via text | a | | [🏠](https://github.com/Mick2nd/CsvImport#readme) | [⬇️](https://github.com/joplin/plugins/raw/master/plugins/de.habelt.CsvImport/plugin.jpl) | Csv Import | 1.0.1 | Imports a Csv file or pastes a Csv text from Clipboard as table | Jürgen Habelt | diff --git a/manifests.json b/manifests.json index 8dee2c3..514ccd5 100644 --- a/manifests.json +++ b/manifests.json @@ -2542,5 +2542,27 @@ "_publish_hash": "sha256:24d7521dc6b296b4b5c3bcd1d1c8b90620745b070b8c460c92d94e881df7c305", "_publish_commit": "main:c6797adf3bb632fbea12faeb1f1817e6ee3a21c8", "_npm_package_name": "joplin-plugin-multimd-table-tools" + }, + "com.joplin.copy.codeBlocks": { + "manifest_version": 1, + "id": "com.joplin.copy.codeBlocks", + "app_min_version": "2.8", + "version": "1.0.0", + "name": "Copy Code Blocks", + "description": "Add a copy button to the code blocks.", + "author": "Light", + "homepage_url": "https://github.com/LightAPIs/joplin-copy-code-blocks", + "repository_url": "https://github.com/LightAPIs/joplin-copy-code-blocks", + "keywords": [ + "Copy", + "Code blocks" + ], + "categories": [ + "appearance", + "productivity" + ], + "_publish_hash": "sha256:381090ed6c8f119356bbdcda38f029d8791b2a51424ecf8aadb4de75392155c3", + "_publish_commit": "master:d3d3981126df46c8f642f05490e47fee311300c4", + "_npm_package_name": "joplin-plugin-copy-code-blocks" } } \ No newline at end of file diff --git a/plugins/com.joplin.copy.codeBlocks/manifest.json b/plugins/com.joplin.copy.codeBlocks/manifest.json new file mode 100644 index 0000000..0df078c --- /dev/null +++ b/plugins/com.joplin.copy.codeBlocks/manifest.json @@ -0,0 +1,22 @@ +{ + "manifest_version": 1, + "id": "com.joplin.copy.codeBlocks", + "app_min_version": "2.8", + "version": "1.0.0", + "name": "Copy Code Blocks", + "description": "Add a copy button to the code blocks.", + "author": "Light", + "homepage_url": "https://github.com/LightAPIs/joplin-copy-code-blocks", + "repository_url": "https://github.com/LightAPIs/joplin-copy-code-blocks", + "keywords": [ + "Copy", + "Code blocks" + ], + "categories": [ + "appearance", + "productivity" + ], + "_publish_hash": "sha256:381090ed6c8f119356bbdcda38f029d8791b2a51424ecf8aadb4de75392155c3", + "_publish_commit": "master:d3d3981126df46c8f642f05490e47fee311300c4", + "_npm_package_name": "joplin-plugin-copy-code-blocks" +} \ No newline at end of file diff --git a/plugins/com.joplin.copy.codeBlocks/plugin.jpl b/plugins/com.joplin.copy.codeBlocks/plugin.jpl new file mode 100644 index 0000000..41bb1e7 Binary files /dev/null and b/plugins/com.joplin.copy.codeBlocks/plugin.jpl differ