我正在编写一个Google Chrome扩展程序,可在每个页面上运行内容脚本。在我的内容脚本中,我向页面中注入了<div>
个<ul>
和<li>
个孩子。我在样式表中为这些元素指定了几种样式。
但是我发现在一些随机页面上,我的元素将继承网页上定义的样式,因为我没有为我的div指定每个样式属性。
我可以阻止注入的元素继承这些样式的最佳方法是什么?
在我看来,我可以:
<div>
放在<iframe>
内。但是,我必须在我的内容脚本的iframe和源页面之间传递hella消息,因为我的iframe src的chrome://
网址和源页面的http://
网址将被视为交叉原点。答案 0 :(得分:1)
我会选择第一个 - 完全指定您使用的元素的样式。但这比我想象的要多一些。
首先,您必须完全指定容器元素。然后,对于它的后代,你必须说它们也应该使用默认值或从它们的父级继承(直到容器)。最后,你必须指定每个其他元素的外观,以便它们不是所有的平面跨度。
相关的API是getComputedStyle
和来自DOM Level 2 Style的CSSStyleSheet
界面。您可以使用除width
和height
之外的所有值,默认情况下应为auto
。您还需要下载默认样式表,例如Webkit user agent stylesheet。然后,您可以调用以下函数来创建一个完整的样式表,您可以将其注入文档。
请注意,当您将样式表插入目标文档时,您必须使容器选择器尽可能具体,因为网页可能会提供比您的规则更高specificity的规则。例如,在<html id=a><head id=b><style>#a #b * {weird overrides}</style></head>
中,#a #b *
具有比#yourId div
更高的特异性。但我想这并不常见。
注意:出于某种原因,Chrome在加载CSS时会给我错误“无法加载资源”,除非它已经在当前文档的<link>
中。所以你应该在调用这个函数的页面中包含html.css。
// CSS 2.1 inherited prpoerties
var inheritedProperties = [
'azimuth', 'border-collapse', 'border-spacing', 'caption-side',
'color', 'cursor', 'direction', 'elevation', 'empty-cells',
'font-family', 'font-size', 'font-style', 'font-variant',
'font-weight', 'font', 'letter-spacing', 'line-height',
'list-style-image', 'list-style-position', 'list-style-type',
'list-style', 'orphans', 'pitch-range', 'pitch', 'quotes',
'richness', 'speak-header', 'speak-numeral', 'speak-punctuation',
'speak', 'speech-rate', 'stress', 'text-align', 'text-indent',
'text-transform', 'visibility', 'voice-family', 'volume',
'white-space', 'widows', 'word-spacing'];
// CSS Text Level 3 properties that inherit http://www.w3.org/TR/css3-text/
inheritedProperties.push(
'hanging-punctuation', 'line-break', 'punctuation-trim',
'text-align-last', 'text-autospace', 'text-decoration-skip',
'text-emphasis', 'text-emphasis-color', 'text-emphasis-position',
'text-emphasis-style', 'text-justify', 'text-outline',
'text-shadow', 'text-underline-position', 'text-wrap',
'white-space-collapsing', 'word-break', 'word-wrap');
/**
* Example usage:
var fullStylesheet = completeStylesheet('#container', 'html.css').map(
function(ruleInfo) {
return ruleInfo.selectorText + ' {' + ruleInfo.cssText + '}';
}).join('\n');
* @param {string} containerSelector The most specific selector you can think
* of for the container element; e.g. #container. It had better be more
* specific than any other selector that might affect the elements inside.
* @param {string=} defaultStylesheetLocation If specified, the location of the
* default stylesheet. Note that this script must be able to access that
* locatoin under same-origin policy.
* @return {Array.<{selectorText: string, cssText: string}>} rules
*/
var completeStylesheet = function(containerSelector,
defaultStylesheetLocation) {
var rules = [];
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
document.body.appendChild(iframe); // initializes contentDocument
try {
var span = iframe.contentDocument.createElement('span');
iframe.contentDocument.body.appendChild(span);
/** @type {CSSStyleDeclaration} */
var basicStyle = iframe.contentDocument.defaultView.getComputedStyle(span);
var allPropertyValues = {};
Array.prototype.forEach.call(basicStyle, function(property) {
allPropertyValues[property] = basicStyle[property];
});
// Properties whose used value differs from computed value, and that
// don't have a default value of 0, should stay at 'auto'.
allPropertyValues['width'] = allPropertyValues['height'] = 'auto';
var declarations = [];
for (var property in allPropertyValues) {
var declaration = property + ': ' + allPropertyValues[property] + ';';
declarations.push(declaration);
}
// Initial values of all properties for the container element and
// its descendants
rules.push({selectorText: containerSelector + ', ' +
containerSelector + ' *',
cssText: declarations.join(' ')});
// For descendants, some of the properties should inherit instead
// (mostly dealing with text).
rules.push({selectorText: containerSelector + ' *',
cssText: inheritedProperties.map(
function(property) {
return property + ': inherit;'
}).join(' ')});
if (defaultStylesheetLocation) {
var link = iframe.contentDocument.createElement('link');
link.rel = 'stylesheet';
link.href = defaultStylesheetLocation;
iframe.contentDocument.head.appendChild(link);
/** @type {CSSStyleSheet} */
var sheet = link.sheet;
Array.prototype.forEach.call(
sheet.cssRules,
/** @param {CSSStyleRule} cssRule */
function(cssRule) {
rules.push({
selectorText: containerSelector + ' ' + cssRule.selectorText,
cssText: cssRule.style.cssText});
});
}
return rules;
} finally {
document.body.removeChild(iframe);
}
};
答案 1 :(得分:0)
我最近创建了Boundary,一个CSS + JS库来解决这样的问题。边界创建的元素与现有网页的CSS完全分开。
以创建对话框为例。安装Boundary后,您可以在内容脚本中执行此操作
var dialog = Boundary.createBox("yourDialogID", "yourDialogClassName");
Boundary.loadBoxCSS("#yourDialogID", "style-for-elems-in-dialog.css");
Boundary.appendToBox(
"#yourDialogID",
"<button id='submit_button'>submit</button>"
);
Boundary.find("#submit_button").click(function() {
// find() function returns a regular jQuery DOM element
// so you can do whatever you want with it.
// some js after button is clicked.
});
#yourDialogID中的元素不会受到现有网页的影响。
希望这会有所帮助。如果您有任何疑问,请与我们联系。