How to reference a file in the data directory of a Firefox extension?

I'm working on a Firefox extension and I need to inject a JavaScript into a page from a content script. In my Chrome extension I have done the following:

this.initializeJplayerSupport = function() {
  var script = document.createElement('script');
  script.setAttribute('type', 'application/javascript');
  script.setAttribute('src', chrome.extension.getURL('js/custom-jplayer.js'));
  document.head.appendChild(script);
}

The file is in my data directory. How can I reference a js file in a firefox extension content script (where I have used chrome.extension.getURL() for Chrome)?


If you're in main.js in your SDK-based add-on, you require and use the 'data' helper from the 'self' object:

var data = require('self').data;

console.log(data.url('somefile.js')); // prints the resource uri to the file.

For more info:

https://developer.mozilla.org/en-US/Add-ons/SDK/High-Level_APIs/self#data

Once you get this resource uri, you can then supply it to a content script using self.postMessage or self.port.emit:

https://developer.mozilla.org/en-US/Add-ons/SDK/Guides/Content_Scripts


It looks like that starting in Firefox 38, cfx has been replaced with jpm .

Which might be why this line wasn't working for me:

var data = require('self').data;

I simply had to rewrite it a bit:

var data = require('sdk/self').data;
链接地址: http://www.djcxy.com/p/45746.html

上一篇: Firefox添加内容脚本中的相对图像网址

下一篇: 如何引用Firefox扩展的数据目录中的文件?