我正在将Chrome扩展程序移植到Opera Next。除了CSS图像外,一切似乎都在起作用。
在Chrome中,我们在CSS中指定一个图像:
#webapps-compose img {
content: url("chrome-extension://__MSG_@@extension_id__/skin/webapps/compose-128.png");
}
这会在Opera Next发布后适用吗?
答案 0 :(得分:1)
即使您将样式表嵌入非扩展页面,也无需在样式表中指定chrome-extension://__MSG_@@extension_id__
。
url()
总是相对于样式表本身的路径进行解析。因此,只需使用以下样式表即可正确显示图像。
/* .css file within your extension directory */
#webapps-compose img {
content: url("/skin/webapps/compose-128.png");
}