Can I save my private window web history in a file on my computer?

Hello,
I was wondering if there was anyway I could save my private window web history to a file on my computer. Multiple people use this computer so I like to browse in private mode, however, there are some sites I'd like to be able to save as well.
Thanks for you time
Nikki

You can bookmark pages that you are interested in and want to keep.
You can save a copy of the current session data.
You can open the Browser Console (Firefox/Tools > Web Developer).
Paste the JavaScript code in the command line and press the Enter key to run the code.
*Toggle the devtools.chrome.enabled pref on the <b>about:config</b> page to true to enable the command line
*https://developer.mozilla.org/Tools/Browser_Console#Browser_Console_command_line
<pre><nowiki>var ss = Cc['@mozilla.org/browser/sessionstore;1'].getService(Ci.nsISessionStore);
var ssjsonstr = ss.getBrowserState();
var output = ssjsonstr;
var fp = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker);
var stream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(Ci.nsIFileInputStream);
fp.init(window,"",Ci.nsIFilePicker.modeSave);
fp.defaultString="session.json";
if (fp.show() != fp.returnCancel){
var stream=Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream);
stream.init(fp.file,0x04|0x08,0644,0);
stream.write(output,output.length);
stream.close();
}</nowiki></pre>
You can look at this post in this MozillaZine forum thread about inspecting a sessionstore file.
*http://forums.mozillazine.org/viewtopic.php?f=38&p=12098147&start=60#p12098147

Similar Messages

  • How can I save photos that I have modified in Photoshop Elements to my computer hard drive?

    How can I save photos that I have modified in Photoshop Elements to my computer hard drive folders?

    When finished editing click File->Save/Save As and you can either overwrite the original file or rename it and save as new file keeping original intact.
    You can find more info on saving and various settings here http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f89cffc612e28adab65-7 fda.html#WS287f927bd30d4b1f89cffc612e28adab65-7fd7
    Thanks,
    Garry

  • How can I save an EXE front panel image to a file?

    The methods to save a VI front panel image to a file don't work on executable applications. How can I save an EXE front panel image to a file? (LabVIEW 6.1)

    Hi,
    i wrote some vi that save FP to image and created exe and it works fine. How do you save FP to image in VI?
    If you use VI server method "Get Panel Image" and use "Write JPG file" ( or BPM) it works fine.
    Attachments:
    fp.zip ‏40 KB

  • "Windows created a temporary paging file on your computer" - can't get into windows partition

    Recently, I have not been able to get into my Windows partition.  I've been getting this message: [windows created a temporary paging file on your computer...].  Now, after several tries, I can't get in at all - the screen remains black after I start Win.
    So, to go into detail (if this helps at all..)
    - First, I got his message when I booted through Windows - [windows created a temporary paging file on your computer...]  If I press OK, it would take me into my windows screen, but my mouse nor my keyboard will work (I have tried my apple keyboard/mouse and my Samsung ones.. neither works).  I've read that this could be fixed by cleaning up windows to create space - but nothing will allow me to perform any commands...
    - After several tries, the black screen with the Safe Mode option appeared - same results
    - After several attempts to getting into the Safe Mode option, or the regular option - now I get two options : 1. Start windows normally, AND 2. A recommended option that says it will fix whatever is not letting Windows open.  The two options lead me to either a stuck screen of the windows loading image, or just a plain black screen.
    Is there a fix to this?  I'm sorry if the answer is out there, but I just couldn't find anything.
    Would the only option be to uninstall windows? - and how would I do that...??
    Please help!! Thank you!

    how much size did you give windows?
    sounds like it dont have enough space on it's parition to make it's page file

  • I am updating from windows xp to windows 7, how can I save my bookmarks and bookmark tool bar to install on new computer

    I am updating to a new computer, old system was Windows XP my new computer is Windows 7. Can I save my bookmarks and bookmark toolbar from old XP system to install on my new Windows 7 system ?

    See:
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    *https://support.mozilla.com/kb/Recovering+important+data+from+an+old+profile

  • ITunes can't save changes in Windows 7 64-bit

    I've got the latest version of iTunes (9.1.11.1) running on Windows 7 Enterprise 64bit edition. Since I installed it and imported all my music and old database files (to preserve my playlists) I keep getting an error message that iTunes can't save the changes to iTunes because it doesn't have the rights to write to the "C" drive. Is there some permission I'm missing? Any help would be appreciated.
    Cheers.

    Make sure your windows permissions are correct.
    Go into Windows Explorer. Find this folder
    C:\users\ username \My Music\iTunes
    Right-click > Properties, and go to the Security tab. Make sure your userID has _full control_ and ownership over that entire itunes folder, and all its /child/subfolders.
    You'll have to restart itunes so it will read the new permission settings.
    This link has some screenshots of what I'm talking about.
    http://helpdeskgeek.com/windows-7/windows-7-how-to-delete-files-protected-by-tru stedinstaller/

  • How can I save a Numbers spreadsheet as a tab delimited file?

    Okay, I would like to save a Numbers spreadsheet as a tab delimited file. But of course I can't do that, since Numbers only saves as a comma separated values file.
    Plan B: I can open up a CSV file created by Numbers in TextEdit, and I would like to Find and Replace all the commas with tabs. So I open up the Find window, enter a comma under Find, but of course when I put the cursor in the Replace blank and hit the Tab key, it just goes to the next blank instead of giving me a Tab.
    Is there a way I can get a Tab into that blank so I can replace all the commas with tabs?
    --Dave

    Hello
    When we use TextEdit as I described, rows are separated by Returns.
    It appears that your program requires LineFeeds.
    Here is a neat soluce.
    Save this script as an Application Bundle.
    --\[SCRIPT tsv2csv]
    (* copy to the clipboard a block of datas separated by tabs
    run the script
    You will get on the desktop a csv file named from the current date-time.
    The values separator is set to match the Bento's requirements:
    If the decimal separator is period, the script uses commas.
    If the decimal separator is comma, the script uses semi-colons.
    This may be changed thru the setting of the property maybeSemiColon.
    According to the property needLF,
    embedded Returns will be replaced by LineFeeds
    or
    embedded LineFeeds will be replaced by Returns
    Yvan KOENIG (Vallauris, FRANCE)
    le 10 octobre 2008
    property needLF : true
    (* true = replace Returns by LineFeeds
    false = replace LineFeeds by Returns *)
    property maybeSemicolon : true
    (* true = use semiColons if decimal separator is comma
    false = always uses commas *)
    --=====
    try
    set |données| to the clipboard as text
    on error
    error "the clipboard doesn't contain text datas !"
    end try
    set line_feed to ASCII character 10
    if |données| contains tab then
    if maybeSemicolon then
    if character 2 of (0.5 as text) is "," then
    set |données| to my remplace(|données|, tab, quote & ";" & quote)
    else
    set |données| to my remplace(|données|, tab, quote & "," & quote)
    end if -- character 2 of (0.5…
    else
    set |données| to my remplace(|données|, tab, quote & "," & quote)
    end if -- maybeSemiColon
    end if -- |données| contains tab
    if needLF then
    if |données| contains return then set |données| to my remplace(|données|, return, line_feed)
    set |données| to my remplace(|données|, line_feed, quote & line_feed & quote)
    else
    if |données| contains line_feed then set |données| to my remplace(|données|, line_feed, return)
    |données| to my remplace(|données|, return, quote & return & quote)
    end if -- needLF
    set |données| to quote & |données| & quote
    set p2d to path to desktop as text
    set nom to my remplace(((current date) as text) & ".csv", ":", "-") (* unique name *)
    tell application "System Events" to make new file at end of folder p2d with properties {name:nom}
    write |données| to file (p2d & nom)
    --=====
    on remplace(t, tid1, tid2)
    local l
    set AppleScript's text item delimiters to tid1
    set l to text items of t
    set AppleScript's text item delimiters to tid2
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end remplace
    --=====
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE vendredi 10 octobre 2008 13:47:36)

  • I can't save a word document invoke as an item "File" in a folder.

    I invoke a word document(.doc) from Oracle Portal as an item (an item "File" in a folder).
    I modify the word document and have a problem when I attemp to save it.The "Save" icon make nothing,I can't save the file.
    Can someone help me? Thank you

    Not sure if I understand exactly what you are doing, but I think you are opening the document using a Word as a plug in. This downloads the file and opens it from the desktop. In order to see changes from the portal you need to upload the new version by clicking the edit icon and reloading the file.

  • Can't save as JPEG without CS6 converting as IFF file

    Suddenly I can't save my PSD files as JPEG file without CS6 wanting to turn them into iff files. Keeps prompting me to to choose from a drop down menu as Maya or Amiga files. I've checked to be sure my file is set for 8 bits and srgb. Not working with video files of any sort. In fact, I've tried saving past PSD files as JPEG and it's giving me the same iff prompt. Please help!

    What operating system are you using?
    What version of photoshop cs6?
    (Help>System Info)
    Did you point the additional plugins in the photoshop>preferences>plug-ins to an older version of photoshop?
    Did you move or copy any plugins from an older version of photoshop into photoshop cs6?
    Could you post the contents of the Help>System Info from within photoshop cs6?

  • Computer crashed. Tech emailed bookmark file to another computer using Chrome. How can I save it to Chrome, or at least open file to copy bookmarks?

    Computer crashed. Tech emailed bookmarks from FireFox file to another computer that uses Chrome. How can I save these bookmarks from a file saved on the desktop to Chrome, or at least open the file to copy the addresses?

    Restore JSON backup:
    * Bookmarks > Show All Bookmarks > Import & Backup > Restore > Choose File
    Export HTML backup:
    * Bookmarks > Show All Bookmarks > Import & Backup > Export HTML
    *http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    * http://kb.mozillazine.org/Export_bookmarks
    * http://kb.mozillazine.org/Import_bookmarks
    You can also use the portable Firefox version, that should work as well.
    *http://portableapps.com/apps/internet/firefox_portable

  • I can't get Premier Elements 10 to import an AVI file from my computer.

    I just bought Adobe Premier 10 two days ago, and I'm trying to import an AVI file from my computer.  It says Add Media Failure.  This type of file is not supported or the required codec is not installed.  The program installed all right, so I don't know what to do since I bought this software to create movies with the video from my camera, which is in AVI format.

    Hi Bill, thanks for replying so quickly.
    In review of your suggestions, I cannot see where these would be the answer. While I do use 2 computers, both have identical OS, APE-10, and Quicktime versions as well as camera software/drivers. I have not updated the camera firmware in some time, so I do not think this can be the issue, besides I have used both computers in the past few weeks, with no issues, until just recently. Perhaps it was a Win7 update that messed it up?
    However, while waiting for a forum response, I did some further research and found a codec pack (windows.7.codec.pack v.4.03) on CNET. The description sounded exactly like the issues I am having so I downloaded and installed it. (I also converted the original AVI files to MPEG-2, just in case).
    After the codec pack install, the AVI files loaded into APE and showed with no issues.
    I have not yet tried the MOV files as they were not mentioned in the codec pack info, other than; 'and many more'. (one issue at a time!) I did download and installed the latest QT app (but it was the same version I had) so maybe there was something corrupt in the original. We shall see!
    I cannot try it now as I am presently rendering the video, but if I still cannot load the full video MOV files, other than audio only, as old Arnie would say, "I'll be back!" (according to the APE estimate, about 1:12.
    Thanks again for the assist. If it helps you in any way, I will check the box that says the reply fixed the problem! ('Was this Helpful?')
    Doug

  • HOW CAN I SEND THIS MANUAL TO A FOLDER AS A FILE ON MY COMPUTER?

    HOW DO I SEND THIS FOLDER TO FILE ON MY COMPUTER?

    Hi, you have a lot of questions! Here are some articles that should help - [[Create bookmarks to save your favorite webpages]]. And - [[Profiles - Where Firefox stores your bookmarks, passwords and other user data]]. And - [[Learn more about the design of the new Firefox]].
    To export/import bookmarks: Open bookmarks > Show All Bookmarks > Import and Backup.
    You can bring up the Main menu bar temporarily by pressing Alt, or right click in the tab bar (but not on a tab) and tick/check Menu Bar if you want it to be there all the time.
    The help button is at the bottom of the 3-bar menu (question mark).
    Hope that helps!

  • Can't save pdf from a web site - HELP!

    I can't seem to save pdf files from a brokerage account.  I have Reader 9, and one one PC, there is no "save icon" on the tool bar, and no "wording tool bar" -ie, no headong of:  File - Edit - View, etc.  On the other , there is no edit portion of the tool bar.
    On the one PC that displays the picture of the floppy disc - the "save icon"-  when I click on it, nothing happens.  I think i have a problem with the security settings, but can't figure it out.  the financial advisor company can save it just fine, so i think the problem is in my PCs.
    There is a security section that says the contents of the pdf can be copied, butdoesn't work  not in the file copy mode.  (These are not "fill out the form" pdfs, just regular files posted to a web site to allow viewing, downloading, printing, etc.  i could print, but want to save electronically instead.
    Any ideas?

    I have also had this problem with some different web sites - you mention that possibly  it is a security issue so I added the web site I was having this problem with to my "Trusted Sites" list and re-tried saving the PDF and it worked!  Don't know if this will solve your problem, but it did work for me (still don't understand why some sites work and others require an entry in the "Trusted Sites" list.   I'm running Windows 7 (32 bit) and my Adobe version is 9.4.2 and I'm using Internet Explorer 8.  Hope this solution works for you.

  • Can I save all open windows, and reload them later?

    Hi,
    I work on different projects using different applications.
    Say I am working on recording, and editing an audio. I have Quicktime open, finder(showing files) and GarageBand. Is there anyway I can save the current open windows, so at a later date I can just resume where I left off, rather then having to reopen the finder window, and the applications. It's almost liek I want a snapshot of what's open.
    Is there a 3rd party program that does this?
    Thanks.

    Thanks for the answer, but I would really like to close the apps. I may not return to the project for weeks. That's why I would love if a program could save the current open apps, so when I return to my project. I run this program and boom all of my Finders, and applications are restored the way I left them. It saves me time.

  • How can I save a previously published web page off-line instead of deleting

    I have some web pages with photos I do not want to post anymore on my iWeb site. However, I do not want to "delete" the pages because I spent so much time putting them together. Is there a way to save them off-line somewhere for access later on? I am a Scoutmaster and post photo pages of our hikes and adventures. I prefer to save my "masterpiece" pages somewhere for future reference instead of deleting them, which is the only option, to make room for more pages.
    Thank you so much for assisting me.
    p.s. Is there a number limit to the amount of photos I can drag over from iPhoto to an iWeb photo page?
    iMac, Powerbook G4, MacBook Pro   Mac OS X (10.4.10)   Love Macs. I've owned a Mac since the 128 in 1984.

    See this article: "Separating Sites in a single Domain"...
    http://web.mac.com/mark8heaton/iWeb/DomainSeparation/SiteSeparation.html
    iWeb's Help viewer says: "The photo grid holds up to 99 photos." But you can have multiple Photos pages and create a living, growing photo gallery...
    http://www.mac.com/web/en/Tips/013C4180-4787-4847-BAAB-319222AFC652.html

Maybe you are looking for