我正在创建此Chrome扩展程序,当您单击当前页面上的按钮时,会启动一个新的HTML页面,其中包含用户必须完成的一些输入字段。该按钮在content.js内被触发。我想知道什么是最好/最简单的方法来检索用户在HTML表单中输入的信息回到内容脚本/或覆盖在表单中的提交按钮后内容脚本中可用的localStorage变量按下。任何想法都将受到高度赞赏!
答案 0 :(得分:0)
由于你没有代码,这纯粹是猜测。
即便如此,我认为chrome.storage.local
会很有用。
以下是Google网站的一个示例:
function saveChanges() {
// You'd get a value from your form here.
var theValue = textarea.value;
// CCheck there's actually something there
if (!theValue) {
message('ERROR - There's nothing here');
return;
}
// Now use the Chrome Storage API to save the settings
chrome.storage.sync.set({'value': theValue}, function() {
// Success! Let's log a message.
message('Settings saved');
});
}
如果您需要更多帮助,check out the info page。