externally_connectable
清单属性用于声明哪些扩展程序、应用和网页可以
通过 runtime.connect
和 runtime.sendMessage
连接到您的应用。
有关消息传递的教程,请参阅跨扩展程序和应用消息传递和发送消息 来自网页。
在没有外部连接的情况下连接
如果未在应用清单中声明 externally_connectable
,则所有扩展程序和应用都可以
已连接,但所有网页都无法连接。因此,当您更新清单以使用
externally_connectable
,如果未指定 "ids": ["*"]
,则其他扩展程序和应用将
无法连接到您的应用这可能是一个意想不到的后果,因此请注意这一点。
manifest.json 示例
{
"name": "My externally connectable app",
"externally_connectable": {
// Extension and app IDs. If this field is not specified, no
// extensions or apps can connect.
"ids": [
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
...
// Alternatively, to match all extensions and apps, specify only
// "*".
"*"
],
// Match patterns for web pages. Does not affect content scripts.
// If this field is not specified, no webpages can connect.
"matches": [
"https://*.google.com/*",
"*://*.chromium.org/*",
...
],
// Indicates that the extension would like to make use of the TLS
// channel ID of the web page connecting to it. The web page must
// also opt to send the TLS channel ID to the extension via setting
// includeTlsChannelId to true in runtime.connect's connectInfo
// or runtime.sendMessage's options.
"accepts_tls_channel_id": false
},
...
}
参考
external_connectable 清单键可以具有以下属性:
ids
(字符串数组)- 可选获得允许连接的扩展程序或应用的 ID。如果留空或未指定,则不指定 可以连接。
通配符
"*"
将允许所有扩展程序和应用进行连接。matches
(字符串数组)- 可选获准连接的网页的网址格式。这不会影响 脚本。如果留空或未指定,任何网页都无法连接。
格式不得包含通配符网域或(有效)顶级网域的子网域;
*://google.com/*
和https://*.chromium.org/*
是有效的,而<all_urls>
、https://*/*
和*://*.com/*
甚至https://*.appspot.com/*
都不是。accepts_tls_channel_id
(布尔值)- 可选如果设为
true
,则通过runtime.connect
或runtime.sendMessage
发送的消息会设为runtime.MessageSender.tlsChannelId
(如果这些方法要求这样做)。如果为false
, 在任何情况下,我们都绝不会设置runtime.MessageSender.tlsChannelId
。