Cookie Editor

Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab.

Cookie Editor란 무엇입니까?

Cookie Editor은(는) writecode.one에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab.

Cookie Editor is designed to have a simple to use interface that let you do most standard cookie operations. It is ideal for developing and testing web pages or even manual management of cookies for your privacy.

Be careful! Do not share your cookies with anyone you do not trust! Cookies can contain very sensitive information like your login information. If you share your cookies with someone, they could gain full access to your account and compromise it.

Feature list:
- List all cookies for the current tab.
- Search your cookies.
- Create, edit and delete your cookies.
- Import and export your cookies in many formats (JSON)
- Quickly delete all cookies for the current tab.                    

확장 프로그램 기본 정보

이름 Cookie Editor Cookie Editor
ID ookdjilphngeeeghgngjabigmpepanpl
공식 URL https://chromewebstore.google.com/detail/cookie-editor/ookdjilphngeeeghgngjabigmpepanpl
설명 Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab.
파일 크기 267 KB
설치 횟수 402
현재 버전 1.0.0.0
최근 업데이트 2024-01-02
출시 날짜 2024-01-02
평점 5.00/5 총 8 개의 평점
개발자 writecode.one
이메일 [email protected]
결제 유형 free
지원되는 언어 id,ms,de,en,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,th,am-ET,ar,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "__MSG_ext_name__",
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "manifest_version": 3,
    "version": "1.0.0.0",
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "permissions": [
        "cookies",
        "sidePanel",
        "tabs"
    ],
    "side_panel": {
        "default_path": "pages\/sidepanel.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/content_scripts\/main.js"
            ],
            "css": [
                "static\/content_css\/main.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "svg\/*",
                "static\/*",
                "pages\/*",
                "gifs\/*",
                "fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
    },
    "background": {
        "service_worker": "service_worker\/background.bundle.js"
    }
}