We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
Expected results: The cookie should be deleted.
Actual results: The delete icon turns red and the cookie is not deleted.
Cookie Quick Manager 0.3rc2 on Firefox 60.0.1 on macOS PS: Thanks for all the work you put into the latest update, @ysard!
The text was updated successfully, but these errors were encountered:
Hi, thank you for the feedback, the issue is from Firefox itself and is now reported on Bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=1473412
wait & see :p
Sorry, something went wrong.
@ysard I just noticed this issue as well. You can clean these cookies by prefixing file://
Here is a simplified version of the code I use in my extension:
function getCookieRemoveURL(cookie: Cookies.Cookie) { if (cookie.domain.length === 0) return `file://${cookie.path}`; const rawDomain = cookie.domain.startsWith(".") ? cookie.domain.substr(1) : cookie.domain; return (cookie.secure ? "https://" : "http://") + rawDomain + cookie.path; }
No branches or pull requests
Steps to reproduce:
Expected results: The cookie should be deleted.
Actual results: The delete icon turns red and the cookie is not deleted.
Cookie Quick Manager 0.3rc2 on Firefox 60.0.1 on macOS
PS: Thanks for all the work you put into the latest update, @ysard!
The text was updated successfully, but these errors were encountered: