first commit

This commit is contained in:
2025-05-27 17:02:32 +09:00
commit 191fe24ed2
36 changed files with 13550 additions and 0 deletions

1
plugin/html/config.html Normal file
View File

@ -0,0 +1 @@
<div id="plugin-config-root"></div>

BIN
plugin/image/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

26
plugin/manifest.json Normal file
View File

@ -0,0 +1,26 @@
{
"$schema": "https://raw.githubusercontent.com/kintone/js-sdk/%40kintone/plugin-manifest-validator%4010.2.0/packages/plugin-manifest-validator/manifest-schema.json",
"manifest_version": 1,
"version": "1.0.0",
"type": "APP",
"desktop": {
"js": ["js/desktop.js"]
},
"mobile": {
"js": ["js/desktop.js"]
},
"icon": "image/icon.png",
"config": {
"html": "html/config.html",
"js": ["js/config.js"],
"required_params": ["template"]
},
"name": {
"en": "Word output plugin",
"ja": "Word出力プラグイン"
},
"description": {
"en": "Data can be formatted and downloaded using WORD template files.",
"ja": "WORDテンプレートファイルを使用して、データを整形してダウンロードできます。"
}
}