-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (30 loc) · 1.12 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"manifest_version": 2,
"version": "0.2.0",
"type": "APP",
"components": [
{
"type": "APP_INDEX_HEADER_SPACE",
"js": ["js/index.js"],
"css": ["css/index.css"]
}
],
"allowed_hosts": ["https://example.com/"],
"permissions": {
"js_api": ["kintone.app.getId", "kintone.api", "kintone.app.setFieldStyle"],
"rest_api": ["/k/v1/records.json:get"]
},
"icon": "images/icon.png",
"name": {
"ja": "プラグインの新しい開発方式の動作確認用サンプルプラグイン",
"en": "Sample Plugin for Experimental New Plugin System"
},
"description": {
"ja": "プラグインの新しい開発方式を試すためのサンプルプラグインです。アプリのレコード一覧画面上部にエディタを追加し、任意のコードを実行できます。",
"en": "This is a sample plugin to test the behavior of Experimental New Plugin System. Add an editor to the app page and run any code."
},
"homepage_url": {
"en": "https://github.com/kintone/experimental-new-plugin-sample",
"ja": "https://github.com/kintone/experimental-new-plugin-sample"
}
}