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"입니다.

확장 프로그램 스크린샷

screenshot

Cookie Cleaner 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Cookie Cleaner Cookie Cleaner
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
}