Skip to content

Commit

Permalink
Merge pull request #364 from Serg-Kv/master
Browse files Browse the repository at this point in the history
Add plugins
  • Loading branch information
K0R0L authored Nov 5, 2024
2 parents 93f92d6 + 04c423b commit 534f82e
Show file tree
Hide file tree
Showing 215 changed files with 96,386 additions and 236 deletions.
5 changes: 5 additions & 0 deletions sdkjs-plugins/content/cvbuilder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Change Log

## 0.1.0

* Initial release.
29 changes: 29 additions & 0 deletions sdkjs-plugins/content/cvbuilder/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## 概览

简历模板是一款简历生成插件,旨在帮助用户快速创建简历。

[源代码](https://github.com/DenisTyan/ONLYOFFICE-CV-builder-plugin)

## 如何使用

1. 在插件栏找到并点击简历模板插件。
2. 选择适合自己的简历模板,预览并将其插入你的文档。
3. 编辑、保存、导出简历。

如果您想了关于插件的更多内容或者动手尝试,请移步至 https://api.onlyoffice.com/plugin/basic



## Overview

CVbuilder is a resume generation plugin, aiming to help users swiftly create resumes.

[Source Code](https://github.com/DenisTyan/ONLYOFFICE-CV-builder-plugin)

## How to use

1. Find the CVbuilder plugin in the Plugins tab, click on it.
2. Choose a suitable resume template, preview it, and insert it into your doc.
3. Edit, save, and export resumes.

If you need more information about how to use or write your own plugin, please see this https://api.onlyoffice.com/plugin/basic
53 changes: 53 additions & 0 deletions sdkjs-plugins/content/cvbuilder/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"guid" : "asc.{9a2db794-d933-416d-91be-0b6ee35318b0}",
"baseUrl" : "",
"name" : "CVbuilder",
"nameLocale": {
"zh": "简历模板"
},
"version": "0.1.0",
"offered": "Kevin Tian",
"variations" : [
{
"description" : "CVbuilder is a resume generation plugin, aiming to help users swiftly create resumes.",
"descriptionLocale": {
"zh": "简历模板是一款简历生成插件,旨在帮助用户快速创建简历。"
},
"url" : "index.html",
"icons" : ["resources/icon.png", "resources/[email protected]"],
"isViewer" : false,
"EditorsSupport" : [ "word" ],
"isVisual" : true,
"isModal" : true,
"isInsideMode" : false,
"initDataType" : "none",
"isUpdateOleOnResize" : false,

"buttons" : [
{
"text": "Insert",
"primary": true,
"textLocale": {
"zh": "插入模板"
}
},
{
"text": "Cancel",
"primary": false,
"textLocale": {
"zh": "取消"
}
}
],
"size": [1180, 600],
"store": {
"screenshots" : [
"resources/store/screenshots/image.png",
"resources/store/screenshots/image_1.png",
"resources/store/screenshots/image_2.png"
],
"categories": ["recommended", "work"]
}
}
]
}
Binary file not shown.
Loading

0 comments on commit 534f82e

Please sign in to comment.