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 |
官方網址 | 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 } |