Cookie Cleaner
Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
¿Qué es Cookie Cleaner?
Cookie Cleaner es una extensión de Chrome desarrollada por https://arsho.github.io, y su función principal es "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Cookie Cleaner
Descarga archivos de extensión Cookie Cleaner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | mkmmimjebjhpilmnfoiaaaeimnejbkmh |
URL Oficial | https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh |
Descripción | Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z |
Tamaño del Archivo | 36.39 KB |
Cantidad de Instalaciones | 111 |
Versión Actual | 1.0 |
Última Actualización | 2018-05-17 |
Fecha de Publicación | 2018-05-17 |
Calificación | 3.60/5 Total de 5 Calificaciones |
Desarrollador | https://arsho.github.io |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/arsho/cookiecleaner |
URL de la Página de Ayuda | https://github.com/arsho/cookiecleaner |
URL de la Página de Política de Privacidad | http://lab.datamate.ws/chrome_privacy.html |
Idiomas Soportados | 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 } |