我正在构建Google扩展程序,并在我的contentScript中设置了像这样的元素的边框:
link.parentNode.setAttribute("style", "border: 1px dashed red; padding: 2px;")
在我的一个书架中,我有一个表格,用户可以选择这样的颜色:
<input id="input_color" style="width: 20px; margin-left: 8px;" type="color" value="#ff0000"><span class="radio">Highlight color</span>
如何将颜色输入的值传递到HTML文件中,以便我可以根据用户的选择更改颜色?
谢谢