Edit cookies in Internet Explorer 10

cookiesinternet explorerinternet-explorer-10

Is there a way to modify a cookie in IE10? (windows 7)

I've tried editing the cookie in the following folder but it had no effect:

C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Cookies\

Best Answer

You can to use console of IE to edit any value of cookie

Now first hit below commond

document.cookie

It will return you some key values. Now use below command to edit or create new key values

document.cookie="YOURKEY=YOURVALUE"

enter image description here

Hope it will help you :)

Related Question