清单 - input_components
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
可选的清单键,支持将 input.ime
API(输入法)用于 ChromeOS。这样一来,您的扩展程序便可以处理按键、设置合成和打开辅助窗口。开发者还必须在扩展程序的 "permissions"
数组中声明 "input"
权限。
该键接受一系列对象:name
、id
、language
、layouts
、input_view
和 options_page
(请参阅下表)。
属性 |
类型 |
说明 |
name |
字符串 |
输入组件对象的必需名称。 |
id |
字符串 |
(可选)组件对象 ID。 |
language |
字符串(或字符串数组) |
(可选)指定的语言或适用语言列表。示例:"en", ["en", "pt"] |
layouts |
字符串(或字符串数组) |
输入法的可选列表。请注意,ChromeOS 仅支持每种输入法使用一种布局。如果指定了多个布局,选择顺序将处于未定义状态。因此,强烈建议扩展程序为每种输入法仅指定一个布局。对于键盘布局,xkb: 前缀表示这是一个键盘布局扩展。 |
示例:["us::eng"] |
|
|
input_view |
字符串 |
可选字符串,用于指定扩展程序资源。 |
options_page |
字符串 |
可选字符串,用于指定扩展程序资源。如果未提供此项,系统将使用默认扩展程序的选项页面。 |
{
// ...
"input_components": [{
"name": "ToUpperIME",
"id": "ToUpperIME",
"language": "en",
"layouts": ["us::eng"]
}]
// ...
}
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2022-10-28。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"没有我需要的信息"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"太复杂/步骤太多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"内容需要更新"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻译问题"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/代码问题"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"易于理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"解决了我的问题"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u6700\u540e\u66f4\u65b0\u65f6\u95f4 (UTC)\uff1a2022-10-28\u3002"}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2022-10-28。"],[],[]]