Cookie Cleaner
Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
什么是Cookie Cleaner?
Cookie Cleaner是由https://arsho.github.io开发的Chrome扩展程序,该扩展的主要功能是“Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z”。
扩展截图
下载Cookie Cleaner扩展crx文件
下载Cookie Cleaner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
While developing web application we often face cookie related problems. One simple solution is to delete the existing cookies of your current tab and make a hard reload. Cookie cleaner will do this for you. It will remove all the cookies of the active tab and reloads it.
扩展基本信息
名称 | |
ID | mkmmimjebjhpilmnfoiaaaeimnejbkmh |
官方URL | https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh |
简介 | Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z |
文件大小 | 36.39 KB |
安装次数 | 111 |
当前版本 | 1.0 |
更新时间 | 2018-05-17 |
上架时间 | 2018-05-17 |
评分 | 3.60/5 共5次评分 |
开发者 | https://arsho.github.io |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/arsho/cookiecleaner |
帮助页面URL | https://github.com/arsho/cookiecleaner |
隐私政策页面URL | http://lab.datamate.ws/chrome_privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cookie Cleaner", "version": "1.0", "description": "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z", "permissions": [ "cookies", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "cookie.png", "48": "cookie.png", "128": "cookie.png" }, "browser_action": { "default_title": "Clean cookies of current tab", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "run-clean-cookie": { "suggested_key": { "default": "Ctrl+Shift+Z", "linux": "Ctrl+Shift+Z", "windows": "Ctrl+Shift+Z", "mac": "Ctrl+Shift+Z", "chromeos": "Ctrl+Shift+Z" }, "description": "Run the clean cookie method" } }, "manifest_version": 2 } |