Privacy Extension

Provides Privacy for Chrome

Privacy Extensionคืออะไร?

Privacy Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.marspr.eu และคุณลักษณะหลักของมันคือ "Provides Privacy for Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Privacy Extension

ดาวน์โหลดไฟล์ส่วนขยาย Privacy Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Privacy Extension gives you control over the data exposed by your browser.

Clear cookies, databases and local/session storage for the url in the active tab and its embedded resources (e.g. frames, images, scripts).

Prevent browser and canvas fingerprinting by restricting exposure of header fields (Accept, Cookie, Referer and User-Agent) and JavaScript objects or functions (document.cookie, navigator, Canvas.toDataURL and window.name).

You may also set your own refer(r)er or user agent. This fields and your cookie settings will be propagated to both: header fields AND JavaScript.

Please note, that disabling cookies and JavaScript entirely is one of the most effective measures to limit the entropy for fingerprints.

This software is free and open source. See LICENSE for details.

Latest changes (Version 1.1)
- fixed method for overwriting navigator attributes (delete navigator.* no longer worked in Chrome 43, now using __defineGetter__)
- added option to prevent window.name attribute to be used as vector for ever cookies (as suggested in the comments)
- added X-Client-Data to list of blocked headers if user agent is hidden                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Privacy Extension Privacy Extension
ID kgdgengffgmikoloefhbcphnalpicjkg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/privacy-extension/kgdgengffgmikoloefhbcphnalpicjkg
คำอธิบาย Provides Privacy for Chrome
ขนาดไฟล์ 21.55 KB
จำนวนการติดตั้ง 1,219
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-06-15
วันที่เผยแพร่ 2015-06-14
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://www.marspr.eu
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marspr/privacy-extension-chrome
URL หน้าช่วยเหลือ https://github.com/marspr/privacy-extension-chrome/issues
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Martin Springwald",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/small.png",
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "description": "__MSG_info_description__",
    "homepage_url": "http:\/\/github.com\/marspr\/privacy-extension-chrome",
    "icons": {
        "128": "images\/medium.png",
        "48": "images\/medium.png",
        "32": "images\/small.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "26",
    "name": "Privacy Extension",
    "options_page": "html\/options.html",
    "permissions": [
        "cookies",
        "contentSettings",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/"
    ],
    "version": "1.1"
}