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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}