安装后,立即打开一个弹出窗口,其中显示默认文本,例如class A:
"""
A
Attributes:
type (int): type field
required ([str]): required field
"""
type = None # type: str
required = None # type: [str]
def __init__(self, type, required):
"""
The constructor for A class.
Parameters:
type (int): type field
required ([str]): required field
"""
self.type = type
self.required = required
。
我可以将此文字更改为我自己的文字吗?
答案 0 :(得分:1)
您可以在https://developer.chrome.com/extensions/runtime处使用chrome.runtime.onInstall
和OnInstalledReason
来设置安装后的默认行为。您可以按照欢迎信息或说明使用扩展程序来设置新的自定义页面。
chrome.runtime.onInstalled.addListener(function (object) {
if (chrome.runtime.OnInstalledReason.INSTALL === object.reason) {
chrome.tabs.create({url:chrome.extension.getURL("welcome.html")}, function (tab) {
console.log("New tab launched with instructions to use the extension");
});
}
});
此按钮位于background.js
上,安装后将被触发。通过这种方式,您甚至可以设置更新事件,以便可以将扩展上的新更改通知用户。