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 |
Eメール | [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 } |