5

我需要从 JavaScript 中获取扩展安装目录的路径。

我的目标是从 Firefox 扩展写入扩展目录中的 JSON 文件。为此,我需要确定扩展在 Firefox 配置文件中的安装目录。

我使用这段代码:

function writeToFile()
{
    var id  = "plugin@uua";// The extension's id from install.rdf(i.e. <em:id>)
    var ext = Components.classes["@mozilla.org/extensions/manager;1"]
                        .getService(Components.interfaces.nsIExtensionManager)
                        .getInstallLocation(id)
                        .getItemLocation(id);
    var file = Components.classes["@mozilla.org/file/local;1"]
                         .createInstance(Components.interfaces.nsILocalFile);
    file.initWithPath(ext.path); 
    file.append("config.json");     
    var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"]   
                             .createInstance(Components.interfaces.nsIFileOutputStream);
    foStream.init(file, 0x02 | 0x08 | 0x20, 0666, 0); 
    var data = '[ {"id" : "2"} ]';
    foStream.write(data, data.length);
    foStream.close();

它抛出以下错误:

TypeError:Components.classes['@mozilla.org/extensions/manager;1'] is undefined.

我本质上需要从 JavaScript 中自动获取扩展的路径。 我仔细检查了我的扩展程序的 ID,我还尝试从其他扩展程序写入文件,但没有成功。


非常感谢您的回复。无论如何,它并没有让我立即解决我的问题,但它迫使我阅读 Mozilla 文档。我终于明白了它是如何工作的。再次感谢。

解决上述问题:

    Components.utils.import("resource://gre/modules/AddonManager.jsm");
    Components.utils.import("resource://gre/modules/FileUtils.jsm");
    AddonManager.getAddonByID("plugin_id", function(addon) {

    var uri = addon.getResourceURI("config.json");
    var file = Components.classes["@mozilla.org/file/local;1"]
                         .createInstance(Components.interfaces.nsILocalFile);
    var stringUri = uri.asciiSpec;
    stringUri = stringUri.replace(new RegExp(/\//g), '\\');
    stringUri = stringUri.slice(8);
    alert(stringUri);
    file.initWithPath(stringUri);
    alert(addon.hasResource("config.json"));

    var stream = FileUtils.openFileOutputStream(file,
                                                FileUtils.MODE_WRONLY 
                                                | FileUtils.MODE_CREATE 
                                                | FileUtils.MODE_TRUNCATE);
    stream.write(dataToWrite, dataToWrite.length);
    stream.close();
4

3 回答 3

2

从 Firefox 4 开始,您应该使用Add-on Manager API

Components.utils.import("resource://gre/modules/AddonManager.jsm");

AddonManager.getAddonByID(id, function(addon)
{
  var uri = addon.getResourceURI("config.json");
  if (uri instanceof Components.interfaces.nsIFileURL)
    writeToFile(uri.file);
});

请注意,新 API 是异步的,获取有关扩展的数据可能需要一些时间。<em:unpack>true</em:unpack>此外,您需要在您install.rdfconfig.json. 写入扩展目录还有另一个问题:更新扩展时,那里的所有文件都将被替换。一个更好的主意可能是写入配置文件目录中的文件,这样您就不需要牺牲性能。

使用FileUtils.jsm可以简化写入文件:

Components.utils.import("resource://gre/modules/FileUtils.jsm");

var stream = FileOutputStream.openFileOutputStream(file, FileUtils.MODE_WRONLY | FileUtils.MODE_CREATE);
stream.write(data, data.length);
stream.close();
于 2012-04-05T19:00:14.610 回答
0

Firefox 4 取代了 nsIExtensionManager 的使用,取而代之的是Add-on Manager

所以你应该使用附加管理器来代替 FF >= 4

于 2012-04-05T18:22:40.607 回答
0

您可以使用以下命令找到用户的配置文件目录:

Components.utils.import("resource://gre/modules/Services.jsm");
Services.dirsvc.get("ProfD", Ci.nsILocalFile)

将文件保存在这里可能是一个更好的主意,但我不知道上下文。

于 2012-04-05T18:25:52.123 回答