Free The Web

Gets rid of cookie and privacy notifications across the web by hiding or accepting them.

ما هو Free The Web؟

Free The Web هو إضافة Chrome تم تطويرها بواسطة https://unmorph.com، والميزة الرئيسية لها هي "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Free The Web

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

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

                        This extension allows users to hide or auto-accept privacy and cookie notifications while browsing. Both behaviors are configurable by the user.

This extension embraces the need for protecting the privacy of users across the Internet; it is aimed at helping those who are already aware of existing policies to increase their productivity by decluttering their browsing experience.                    

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

الاسم Free The Web Free The Web
ID akbjfkpoelmhongdcnogaldonneaahdi
عنوان URL الرسمي https://chromewebstore.google.com/detail/free-the-web/akbjfkpoelmhongdcnogaldonneaahdi
الوصف Gets rid of cookie and privacy notifications across the web by hiding or accepting them.
حجم الملف 128 KB
عدد التثبيتات 55
النسخة الحالية 1.0.5
آخر تحديث 2019-06-18
تاريخ النشر 2019-06-18
تقييم 5.00/5 مجموع تقييمات 1
المطور https://unmorph.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://unmorph.com/free-the-web
عنوان صفحة المساعدة https://unmorph.com/free-the-web
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Free The Web",
    "description": "Gets rid of cookie and privacy notifications across the web by hiding or accepting them.",
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*.json"
    ],
    "version": "1.0.5",
    "author": "Victor Pascu",
    "browser_action": {
        "default_title": "Free The Web",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persisent": false
    },
    "icons": {
        "128": "\/img\/icon-default-128.png"
    }
}