Get the cookie of the current web page with one click, and automatically release it and set it on the clipboard, which can be directly pasted and used (the get button is located in the lower left corner of the page).
添加一个浏览器标签(书签),然后将网址改成以下代码,即可实现标签化一键获取当前页(网站)cookie,并自动放置于剪贴板上:
javascript:(function(){ var cookies = document.cookie; navigator.clipboard.writeText(cookies).then(function() { alert("Cookies已经放置到剪贴板上:\n " + cookies); }, function(err) { alert("不能复制该网站cookie到剪贴板: " + err); });})()


一键获取当前网页cookie的油猴插件,并且自动放置于剪切板,可直接粘贴使用(获取按钮位于页面左下角)。
点击会有windows弹窗提示,不想要弹窗可以自己在源代码注释掉:

