Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

How do I restore cookies that I mistakenly deleted

  • 5 답장
  • 137 이 문제를 만남
  • 10 보기
  • 최종 답변자: cor-el

more options

I inadvertently deleted all my cookies. I need to restore the cookies as I need them to login to places such as ebay, etc. Where would I find the backup file(s) to be able to do this. Please help, I've been trying to do this myself with no luck for an hour!

I inadvertently deleted all my cookies. I need to restore the cookies as I need them to login to places such as ebay, etc. Where would I find the backup file(s) to be able to do this. Please help, I've been trying to do this myself with no luck for an hour!

모든 댓글 (5)

more options

There isn't a way, unless you have created a backup of your Firefox profile. See Back up and restore information in Firefox profiles. Cookies are meant to be temporary anyway. Once you log back into Ebay and check mark the option to keep you signed in, there will be a new cookie set.

more options

---

Good job, Mozilla.

With all the options to Ask Before Deleting, you left off the one that would actually make a difference in my life.

Good Job.

Now, all I have is Mozilla cookies.

Yummy.

---

more options

How and where did you delete cookies?

more options

I accidentally clicked "remove all cookies" when I was editing cookies. My heart sank as I realized I clicked the wrong button. I was sure that something that important would have a verification step before actually removing all your cookies. I was wrong.

more options

You can remove some or all buttons in the Cookie Manager and use the Delete key instead to remove selected cookies.

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* Remove buttons in Cookies: "View Cookies" window */
#CookiesDialog     button#removeCookie         {display:none!important}
#CookiesDialog     button#removeAllCookies     {display:none!important}
#PermissionsDialog button#removePermission     {display:none!important}
#PermissionsDialog button#removeAllPermissions {display:none!important}