我是一个主要的菜鸟,所以我会尽力解释这一点。Anywho,我正在学习扩展开发的步骤,我想将 Greasemonkey 脚本和 Firefox 附加组件中的元素融合在一起。到目前为止,我设法让一些东西正常工作,但我似乎无法弄清楚如何使脚本中的图像和 CSS 文件指向 Chrome:Skin
文件夹。
当前代码是:
var newstyle = document.createElement('link');
newstyle.rel = 'stylesheet';
newstyle.href = 'http://example.com/test.css';
newstyle.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(newstyle);
function main(){
var assets = Math.floor(Math.random()*8);
$('<div id="jumpFloatingButton" style="width:80px;height:30px;background-color:#21a0f1;background-image:url(http://colourlovers.com.s3.amazonaws.com/images/patterns/2757/2757110.png);position:fixed;right:0px;bottom:0px;background-attachment: scroll;cursor: pointer;"></div>').insertAfter('body *:last');
$('<div id="jumpFloating" style="width:400px;height:500px;position:fixed;bottom:30px;right:0px;border:1px solid black;background-image:url(http://colourlovers.com.s3.amazonaws.com/images/patterns/2757/2757110.png);"><ul id="jumpFloatingList" style="overflow:auto;max-height:500px;max-width:400px;margin-left:0px;"></ul></div>').insertAfter('#jumpFloatingButton');
上述代码中的链接是从其他来源链接的文件的示例。我想知道的是如何从加载项文件夹而不是其他 URL 中创建链接点?像:
newstyle.href = 'chrome://folder/skin/overlay.css';
或者
$('<div id="jumpFloatingButton" style="width:80px;height:30px;background-color:#21a0f1;background-image:url(chrome://folder/skin/image.jpg);position:fixed;right:0px;bottom:0px;background-attachment: scroll;cursor: pointer;"></div>').insertAfter('body *:last');
我使用 Netbeans。我的清单
content file jar:chrome/file.jar!/content/
skin special classic/1.0 jar:chrome/special.jar!/skin/ contentaccessible=yes
我试过
var newstyle = document.createStyleSheet('overlay.css');
newstyle.rel = 'stylesheet';
newstyle.href = 'chrome://nb/skin/overlay.css';
newstyle.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(newstyle);
添加 document.createStyleSheet 会修复它吗?我的编辑
$('<div id="imagestack" style="width:304px;height:64px;background-image:url("chrome://special/skin/nav.png");