3 种方法的建议
注入固定 html 元素的内容脚本
是的,如果指定的样式在网页中过于通用
前任:
div {
border:none;
}
即使您将 id(s) 和类的罕见组合分配给 css 也会影响内容脚本元素,解决方案是使用 css 指定(或)覆盖所有样式,这非常麻烦
例如:超越每一种容易出错和繁琐的风格。
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
注入 iframe 的内容脚本。
关于您对动态 iframe 上的脚本注入的担忧,我建议这是最好的方法;是的,可以将脚本注入动态生成的 iframe
示例实现
清单.json
{
"name": "Iframe",
"description": "",
"version": "1",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"myscript.js"
],
"run_at": "document_end"
},
{
"matches": [
"<all_urls>"
],
"js": [
"anotherscript.js"
],
"all_frames": true
}
],
"permissions": [
"<all_urls>"
]
}
myscript.js
var iframe = document.createElement("iframe");
iframe.setAttribute("src", "https://www.facebook.com/plugins/like.php?href=http://allofrgb.blogspot.in/");
iframe.setAttribute("style", "border:none; width:150px; height:30px");
iframe.setAttribute("scrolling", "no");
iframe.setAttribute("frameborder", "0");
document.body.appendChild(iframe);
另一个脚本.js
iframes = document.getElementsByTagName("iframe");
for (iframe in iframes){
console.log(iframes[iframe].src);
}
console.log("In another Script");
如果您观察到控制台记录的消息,您会观察到消息被记录两次(document
log + iframe
log + [any number of optional iframes in pages]*
)
anotherscript.js
在状态期间运行的确实在动态生成的 iframe 中执行,但是您可以随时通过chrome.tabs.executeScript()document idle
重新运行内容脚本。
扩展 Devtool 面板
您已经清楚地确定了问题,因此将其作为替代方案消除。