How can I allow send referrers in site (same domain) only but not between sites?

I don't want other sites to know from which site I went there. (Sending referrer between sites.) However, some sites only function when referrer is sent on site (same domain).
Is there a way to accomplish this? No sending referrers between sites but in sites: yes? If not Firefox, Chrome?
Thanks.

Hi , I think this addon is what you need [https://addons.mozilla.org/en-US/firefox/addon/refcontrol RefControl]
About this Add-on:
You create a list of sites, and the referrer that should be sent for each site. You can choose to send that referrer unconditionally or only for third-party requests. Additionally, you can specify the default behavior for any site not in the list.

Similar Messages

  • 2 different iphones have the same Apple ID, how can I change the apple ID on one of them but not delete the other iphone's data and media?

    2 different iphones have the same Apple ID, how can I change the apple ID on one of them but not delete the other iphone's data and media?

    You don't have to do anything with the first iPod that you don't use anymore. If you are planning on keeping it, put in a drawer in your house and forget about it.
    You don't need a second account to use with the new iPod. I use one Appl e ID and iTunes library for two iPods, and two iPad. I have different content on all four devices. You can select exactly what you want to sync to each device and it can be different content on all devices.

  • How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI?

    How can I change the default pdf reader from the installed (but not yet registered) Adobe Acrobat 9 Pro to Adobe Reader XI? I'm having some hiccups getting Adobe to register the software, but since I set it as the default .pdf reader during setup, things try (and fail) to open in the as yet unregistered software. How can I change it temporariiy to the Acrobat Reader XI that I have installed?

    Anubha,
    It worked! Thank you so much.
    I'd opened file with the 'Open with' feature then clicking Adobe Reader,
    but that didn't do it. When I used 'Open with', then 'Choose default
    program...', it worked like a charm.
    Again, thank you!
    Jonathan
    On Wed, Mar 18, 2015 at 10:16 PM, Anubha Goel <[email protected]>

  • How can I change the link color css in one module but not the whole site?

    I have a site built in muse but using modules from BC.  I changed the link color in the css for the online store and blog but of course it is applying it to everypage.  Is there a way to change the link color in an individual BC module instead of the whole site.?  I'm new to CSS obviously.
    Thanks
    Josh

    I don't think you can do it right in Muse but you can easily if you have access to the code of the page and the css file.
    You need to create a css class something like:
    .secondLink a      {     /*  secondLink can be any class name, I just chose that randomly
         color: #990000;     /* of course substitute your color code in there
    Then in your code add:
    class="secondLink"
    to your link's <a> tag. This will give any links with the class of secondLink the color assigned. Hope that helps get you started.

  • How can i delete a website made in iWeb from MobileMe but not from iWeb

    The problem is that I have made changes to several pages (almost all of them) on my site and since the changes my site no longer displays correctly in Internet Explorer.
    I have looked in the IE CSS file and the CSS file for IE is completely messed up and would take a long time to correct by correcting the code for every page, so I decided just to delete the whole site from MobileMe and then republish it as a new site, rather then as an altered site.
    The problem is I don't want to delete the site from iWeb, because it has took me months to build it and I don't want to have to start again. I just want to delete the site from MobileMe, so I can republish it as a new site (and hopefully correct the screwed up code).
    So how can I delete a website created in iWeb and published on MobileMe from MobileMe without deleting it from iWeb.
    Huge thanks
    Jay

    Hey thanks for your reply, unfortunately I have already tried to delete my site from iDisk >> Web >> Sites. But it said that i didn't have permission and it wouldn't delete the files.
    I am loged in as an Admin and I still cant delete them
    Thanks again
    Jay

  • How can I sync a podcast in iTunes to Podcasts app, but not Music app

    When I first got the podcast app I had three podcasts set to sync to my iPhone. Two were podcasts I'm subscribed to via iTunes Music Store and one is a podcast downloaded from a website as individual files (I changed the type to Podcast). The first time I lauched the Podcasts app all of them were there and I was happy. Even though they were now in my Podcasts app I subscribed to them from the app (except for the one that I didn't get from iTunes) I then turned off podcast syncing in iTunes so it wouldn't sync podcasts to both my Music app and my Podcasts app. Maybe this wasn't necessary but I didn't want duplicates and I found nothing online telling me if syncing would result in two copies or not so I chose to turn it off.
    Now I've listened to all of the episodes of the one I downloaded from a website and I want to put more, newer episodes of it on my iPhone. However, I can't figure out how to get them from iTunes to the Podcasts app. The only thing I can think of would be to turn on syncing again but as mentioned above, I'd like to leave syncing off.
    Any help appreciated.

    Unfortunately since the Podcast App is not part of iTunes, you cannot sycn from iTunes.  You have to subscribe to the podcast from inside the Podcast App.
    Do this by clicking on the gear in the top right hand corner. Then turn "Subscription" on.  While you're here decide with order you want to sort them, oldest or newest first.  Be aware that, to my knowledge, your IOS device must be awake to download the podcasts you subscribe to.
    To delete podcasts you've listened to, simply swipe from right to left on the podcast and tap on the delete button when it appears.  This is done by individually, just like in Mail. Unfortunately, there doesn't appear to be a way to select multiple episodes to delete at once.

  • HT2731 I have 2 apple iPods on the same account, And they have the Same songs on them. How can I get a new account for one of them but not the other? Can I wipe the memory of 1? How would I do that?

    I have 2 iPods one I don't use anymore. I would like to make a new account for one but not the other. Is that possible? If I wipe the memory in one will the other wipe out too? How can I do all of this?

    You don't have to do anything with the first iPod that you don't use anymore. If you are planning on keeping it, put in a drawer in your house and forget about it.
    You don't need a second account to use with the new iPod. I use one Appl e ID and iTunes library for two iPods, and two iPad. I have different content on all four devices. You can select exactly what you want to sync to each device and it can be different content on all devices.

  • How can tell the script I want to save unsaved files but not replace the old one?

    Hi everyone
    I got this script
    var docs = app.documents; 
    for (var i = docs.length-1; i >= 0; i--) { 
        if (docs[i].saved == false) { 
            docs[i].save(new File(“~/Desktop/Document.indd”)); 
            docs[i].close(); 
        else { 
            docs[i].close(SaveOptions.YES); 
    close and save files
    but if I have two or more files, I want to save files like Doc1, Doc2...
    the new file will never replace the old one
    Can some one tell me how can I do that?
    Thanks
    Regard
    Teetan

    Hi,
    Change the 4th line like below:
            docs[i].save(new File("~/Desktop/Doc" + (i+1) + ".indd"));
    Vandy

  • How can I sync my iPhone and iPad to my computer but not have notifications on my computer?

    I want to be able to back up my ihpone and ipad to the cloud but not have any notifications on my computer. The reason being is that it is my husbands computer that I synced it to and now he is getting all of my pop up notification/reminders on his imac. Can this setting be turned off somewhere?
    Thanks!
    Courtney

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • How can I allow users to view any Wiki Pages inside my enterprise wiki site collection, as PDF files

    We are working on an enterprise wiki site collection, and users start adding wiki pages and link them together. But a new requirement was raised by the customer, to allow users to be able to convert any wiki page to pdf file and save the pdf file to their
    local PCs. They are suggesting to add a link or an option inside the upper ribbon , named “Make as PDF”, and once clicked they can view the current wiki as a pdf file.
    Not sure what are the capabilities of SharePoint 2013 to do so ? and is there any third paryt tools that allow doing similar tasks ?
    Thanks

    If you want to save as PDF, could you not use a PDF printer, so the procedure would be to 'Print this page' and the user then selects their PDF printer and where they want to save the file.
    but in this way the user will have the page header footer, left navigation included in the pdf file. while i want to extract the body only. i so not think you apprach will work for my requirements

  • How can I allow pop-ups even after "Block pop-ups" is NOT checked?

    When I'm on the Google Drive website (https://drive.google.com/) and I click Create > Document, I get the following message:
    "Firefox prevented this page from automatically redirecting to another page."
    My only options on the far right are "Allow", and "[X]" to exit.
    The URL for any new document starts with "https://docs.google.com/".
    Seeing as creating a new Google document forces a new tab to open, I felt that this would fall under "pop-up windows".
    Help, please!

    This is not because of a blocked popup.<br>
    This is an accessability setting.
    You can turn this off, by following these steps:
    #Go to the Firefox Options
    #Select the General Tab
    #Uncheck the Warn me when websites try to reload...
    Please report back soon.

  • How do I allow access to internal website which cert name does not match site name?

    We have many internal sites which the certificate name does not match our site name. Is there a way to override the exception manually so we can access site?

    Change prefix from <b>https://</b> to <b>http://</b>

  • Yesterday I updated logic pro and my IK Multimedia ARC system has disappeared from the plug in drop down window, how can I get it back, it appears on old files but not new ones

    yesterday I updated logic pro, I have just discovered that my IK Multimedia ARC system has disappeared from the plug in drop down window, can anyone advise how I can get it back. It seems that old logic files where it was previously loaded still have the plug in live, but on a new project file it simply isn't there to select and activate.

    Not sure about your issue. What did you update from and to? Is ARC still in the plugins/components folder?
    I'm an ARC user too. I have it plugged in to Audio Hijack Pro which is set to hijack audio from Logic. This way ARC is after logic and you don't have to remember to bypass the plugin before you bounce.

  • HT203167 i cannot find any trace in my itunes account of numerous audiobooks that i have bought in the last year. how can i recover these. they are in my purchase history but not in my collection.

    i cannot find any trace in my collection of audiobooks that i have purchased over numerous months. they appear in my purchase history but are nowhere to be found in my itunes . how should i recover these ?

    If you can't find the files in the iTunes folder on your hard drive, then you'll need to restore them from your backups. Audiobooks have not at this time been licensed for re-downloading from the iTunes Store.
    Regards.

  • How can I turn off ring for notifications e.g. messages but not for calls?

    Simple question:
    Is there a combination of settings where I can turn off sounds and vibrate for notifications e.g. whatsapp, facebook but still have it vibrate for calls.
    E.g. if its in my pocket I'd prefer not to keep getting vibrations, but it would be necessary to know if someone is calling
    Thanks

    i dont know about whatsapp or other 3rd party apps 0 they may have setting options to do what you want - but for text messages and Facebook posts you can go to Settings/Sounds and set the sound for those 2 things to None

Maybe you are looking for

  • Which table or view in OEM repository contains a SOAcomposite instance info

    Hi All, Can anyone please tell me which table or view in OEM repository contains information about a SOA composite instance state in OEM 12c Cloud Control. Actually I want to create a report in Information Publisher displaying the SOA composite insta

  • JMenus and JMenuItems

    i have a JMenu called jMenu2, in its action performed method i would like it to add to the bottom of its list a new JMenuItem while the program is running. private void jMenu2ActionPerformed(java.awt.event.ActionEvent evt) { // TODO add your handling

  • Parameters of tnsnames.ora

    hello. i am new in oracle 10g and i want to take advice. i see the setting parameters of tnsnames.ora on Oracle Net Manager and i set the tnsnames.ora with it. i developed a client application working with remote oracle 10g database on windows platfo

  • ADO's Use with XML for Data Transfer

    Does anyone know if ADO is supported as a data transfer method between XML and Oracle8i and back (from Oracle8i and XML)? If not, are any other Microsoft drivers supported for this type of operation? null

  • How to return records from an MS SQL Database

    I have created a small form in Adobe LiveCycle 9.  I setup a new data connection to a database on my MS SQL server 2008.  I can see my sql data fields under the data connection tab and bound them to my corresponding fields in my form.  The form popul