Cookie Cleaner
Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z
Wat is Cookie Cleaner?
Cookie Cleaner is een Chrome-extensie ontwikkeld door https://arsho.github.io, en de belangrijkste functie is "Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z".
Extensie Screenshots
Download het CRX-bestand van de extensie Cookie Cleaner
Download Cookie Cleaner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mkmmimjebjhpilmnfoiaaaeimnejbkmh |
Officiële URL | https://chrome.google.com/webstore/detail/cookie-cleaner/mkmmimjebjhpilmnfoiaaaeimnejbkmh |
Beschrijving | Remove cookies only of the active tab and perform a hard reload. Keyboard shortcut: Ctrl+Shift+Z |
Bestandsgrootte | 36.39 KB |
Aantal Installaties | 111 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-05-17 |
Publicatiedatum | 2018-05-17 |
Beoordeling | 3.60/5 Totaal 5 Beoordelingen |
Ontwikkelaar | https://arsho.github.io |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/arsho/cookiecleaner |
Help Pagina-URL | https://github.com/arsho/cookiecleaner |
URL van de Privacybeleid Pagina | http://lab.datamate.ws/chrome_privacy.html |
Ondersteunde Talen | 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 } |