Minimis extended cookie management

Manage cookies using Chrome API

ما هو Minimis extended cookie management؟

Minimis extended cookie management هو إضافة Chrome تم تطويرها بواسطة Iulian Ghionoiu، والميزة الرئيسية لها هي "Manage cookies using Chrome API".

تحميل ملف CRX للإضافة Minimis extended cookie management

قم بتنزيل ملفات الامتداد Minimis extended cookie management بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This project is an extension of "Cookie Test" form the Google API Examples.

  The "Minimis" extended cookie management uses content injection to allow a page to erase all it's cookies (especially the HttpOnly ones).

  The loaded page only needs to issue the command:
window.postMessage({ type: "ERASE_COOKIES", text: document.domain }, "*");                    

معلومات أساسية عن التمديد

الاسم Minimis extended cookie management Minimis extended cookie management
ID bphmaipfhiaagcfgdpbbclblomlgjfda
عنوان URL الرسمي https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda
الوصف Manage cookies using Chrome API
حجم الملف 9.76 KB
عدد التثبيتات 14
النسخة الحالية 0.1
آخر تحديث 2013-08-24
تاريخ النشر 2013-08-24
المطور Iulian Ghionoiu
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minimis extended cookie management",
    "version": "0.1",
    "description": "Manage cookies using Chrome API",
    "permissions": [
        "cookies",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "ro.png",
        "48": "ro.png",
        "128": "ro.png"
    },
    "browser_action": {
        "default_icon": "ro.png"
    },
    "background": {
        "scripts": [
            "class\/CookieCache.class.js",
            "class\/CookieHandler.class.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}