Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 chrome 扩展,它将使用注入的内容脚本对页面进行一些更改。我不希望页面反转这些更改或阅读它们。有什么办法可以做到吗?
如果内容脚本不可能,有没有其他方法可以在 chrome 扩展中做到这一点?
您无法锁定您的 DOM 更改以防止页面进一步修改,您无法阻止页面恢复您的扩展所做的任何更改。您可以希望做的最好的事情是捕获任何事件并尝试阻止或反转,但这样的事情可能会非常耗费代码。