Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6678255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:13:14+00:00 2026-05-26T04:13:14+00:00

I have worked on Mozilla Add-on Development in the past (beginner level). But on

  • 0

I have worked on Mozilla Add-on Development in the past (beginner level). But on encountering XPCOM, I got really scared and left it in the middle.

Recently only I encountered Add-on SDK and found it to be really cool, and it was really fascinating to see that the work that took months before was not more than 2 days work with the SDK. Now again I am stuck on the XPCOM module.

Now I really want to exploit the power of XPCOM but it will take me at least a week to get familiar with XPCOM in the context of SDK. What code do I need to obtain the functionality that I desire?

  1. For each user session, I want to log something. I am able to differentiate sessions. What I want now is the code to create a file in the user’s machine, open it from the add-on and write something onto it.

  2. Code to access the bookmarks and downloads and to read them.

It would really be a heart-breaking moment if I would have to switch back from SDK.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:13:15+00:00Added an answer on May 26, 2026 at 4:13 am

    The chrome package gives you full XPCOM access. For file access it is best to use the FileUtils module:

    var {Cc, Ci, Cu} = require("chrome");
    var {FileUtils} = Cu.import("resource://gre/modules/FileUtils.jsm");
    var file = FileUtils.getFile("ProfD", ["mylogfile.txt"]);
    var stream = FileUtils.openFileOutputStream(...);
    stream.write(data, data.length);
    stream.close();
    

    The somewhat unusual syntax to import the module is due to bug 683217. Note that FileUtils.openFileOutputStream() is only available starting with Firefox 7 and FileUtils.openSafeFileOutputStream() isn’t usable if you want to append to a file.

    For bookmark access you use the usual code snippets, starting with:

    var bmsvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"]
                  .getService(Ci.nsINavBookmarksService);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have worked on projects for embedded systems in the past where we have
I have worked on iPhone application but not aware of the formalities to submit
I have worked within a web development company where we had our local machines,
I have worked with pointers a lot, but still whenever I work with them,
I have worked with code which had NUnit test written. But, I have never
I have worked in project for long time but after electricity has cut off
I have worked out how to detect touching on an object using glReadPixels but
I have worked in C language, but now i have been given this work
I have worked for 5 years mainly in java desktop applications accessing Oracle databases
I have worked a bit with Django and I quite like its project/applications model

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.