JSClearCookie by PageClear
Clear the specified cookies by js
1 User1 User
Extension Metadata
About this extension
通过JS脚本来自定义需要清除的Cookie 绝不收集任何隐私
使用方法
//定义需要清除的CookieName 若为空者清除对应网站上的所有Cookie
const cookieNames = [];
//JS发送清除Cookie请求
window.postMessage({ status: 1, message: "Clear-Cookie", cookieNameArr: cookieNames }, window.location.origin);
//JS接收返回消息
window.addEventListener('message', (event) => {
if (event.source == window && event.data.isSuccess) {
//TODO
}
});
使用方法
//定义需要清除的CookieName 若为空者清除对应网站上的所有Cookie
const cookieNames = [];
//JS发送清除Cookie请求
window.postMessage({ status: 1, message: "Clear-Cookie", cookieNameArr: cookieNames }, window.location.origin);
//JS接收返回消息
window.addEventListener('message', (event) => {
if (event.source == window && event.data.isSuccess) {
//TODO
}
});
Rated 0 by 0 reviewers
Permissions and data
More information
- Version
 - 1.1.1
 - Size
 - 12.37 KB
 - Last updated
 - 4 years ago (Jan 25, 2022)
 - Related Categories
 - License
 - Mozilla Public License 2.0
 - Version History
 - Add to collection