Leaderboard

  1. BugMiss006

    BugMiss006

    Vice Admin


    • Points

      4

    • Posts

      1,267


  2. -ody-

    -ody-

    MX Master


    • Points

      2

    • Posts

      4,468


  3. No.1MaxthonFan

    No.1MaxthonFan

    MX Master


    • Points

      1

    • Posts

      3,012


  4. 7twenty

    7twenty

    MX Master


    • Points

      1

    • Posts

      4,695


Popular Content

Showing content with the highest reputation on 07/01/2015 in all areas

  1. Advanced cookie management using third party programs If you need to do more than clean cookies on one or two sites using the above method, then another option is to use a third party tool to help with this. Using Cookiespy Cookiespy is a small utility that supports Maxthon. Install and select Maxthon from the tabs on top. You may need to select it using the + button on the right top corner if you use the portable version. It will display cookies and allow you to search, then delete as required. Using a SQL database manager Thanks to the scripting nature that SQL DB uses you can quite easily selectively delete cookies using any SQL browser/manager program. I've tested with DB Browser for SQLite. This is a basic rundown of how to use it: Open the cookie file (\UserData\Users\guest\Cookies) - Make a backup first! In the Execute SQL tab enter the following query: SELECT * FROM cookies Then on the next line is where you will state the cookies you want to display/delete in the format: WHERE (host_key NOT LIKE '%facebook%') AND (host_key NOT LIKE '%google%') Press the play button to run the query. The SELECT command displays all the cookies that are not what you have designated in the above command. To delete cookies use the query: DELETE FROM Cookies WHERE (host_key NOT LIKE '%facebook%') AND (host_key NOT LIKE '%google%') Press the play button to run the query. This will delete ALL cookies that DO NOT have facebook or google in the cookie data. You can add as many as you like, they just need to be connected with AND: WHERE (host_key NOT LIKE '%facebook%') AND (host_key NOT LIKE '%google%') AND WHERE (host_key NOT LIKE '%microsoft%') AND (host_key NOT LIKE '%yahoo%') Also make sure all the symbols ('%%') are there otherwise you will get errors. NOTE: You only need to use the DELETE query. I've mentioned the SELECT option so you can view the cookies that will be deleted in case there is some other ones that you didn't add to the list. I recommend creating a backup of your Cookies file before you do this in case something goes wrong. But they're only cookies - so it's not that bad. USE AT YOUR OWN RISK, i'm just providing the info that I came across and won't be responsible for anyone losing any data by using this method. Seeing as the browser natively writes and reads to a SQL database, i'd imagine it's relatively trivial for the developers to create a UI to make it accessible to the end user. But for whatever reason it hasn't been done yet. I'd guess that it could be added as an extension if there was a way that you could implement a SQL manager into the extension file somehow. Regardless this is an option for anyone that needs to remove multiple cookies and keep select ones from different sites. Enjoy :-)
    1 point