Privacy Guardr

An extension to help you make informed decisions about the privacy implications of your installed extensions

Privacy Guardrคืออะไร?

Privacy Guardr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kyle.graehl.org และคุณลักษณะหลักของมันคือ "An extension to help you make informed decisions about the privacy implications of your installed extensions"

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

screenshot

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

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

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

                        Privacy Guardr (formely Privacy Guard) helps you identify extensions and apps that are a privacy risk. Protect yourself against malware and nefarious extensions that seek to compromise your browsing safely.

Privacy guard has many features to protect you from malware and unseemly applications. It is an open source project: https://github.com/kzahel/privacy-guard-extension

Update Feb 29 2020
- Remove unused notification permission 

Update Dec 1 2014
- Changed name of app due to trademark conflict with privacyguard.com (credit monitoring service)

- Check permissions of installed extensions
- See extensions and apps with high risk permissions
- (soon) Identify changes to app publisher

Sept 12, 2014 - version 0.1.4
- Updated to detect "high risk" apps.

Jan 21, 2014 - First released. I wrote this app because I couldn't find anything else like it in the chrome web store and there's been a lot of buzz about chrome extension malware recently. I have some ideas for further improvements to make to this app, but welcome your feedback!                    

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

ชื่อ Privacy Guardr Privacy Guardr
ID edcajbacgdcdeecojhlllbgingbjfbmk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/privacy-guardr/edcajbacgdcdeecojhlllbgingbjfbmk
คำอธิบาย An extension to help you make informed decisions about the privacy implications of your installed extensions
ขนาดไฟล์ 410 KB
จำนวนการติดตั้ง 1,037
เวอร์ชันปัจจุบัน 0.1.7
อัปเดตครั้งล่าสุด 2020-03-02
วันที่เผยแพร่ 2020-03-02
คะแนน 4.44/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา https://kyle.graehl.org
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kzahel/privacy-guard-extension
URL หน้านโยบายความเป็นส่วนตัว http://graehlarts.com/privacy.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Privacy Guardr",
    "short_name": "Privacy Guardr",
    "description": "An extension to help you make informed decisions about the privacy implications of your installed extensions",
    "author": "Kyle Graehl",
    "version": "0.1.7",
    "manifest_version": 2,
    "offline_enabled": true,
    "minimum_chrome_version": "8",
    "permissions": [
        "management",
        "https:\/\/chrome.google.com\/"
    ],
    "optional_permissions": [],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "19": "icons\/privacy-guard-19.png"
        },
        "default_title": "Privacy Advisor"
    },
    "icons": {
        "19": "icons\/privacy-guard-19.png",
        "48": "icons\/privacy-guard-48.png",
        "96": "icons\/privacy-guard-96.png",
        "128": "icons\/privacy-guard-128.png",
        "256": "icons\/privacy-guard-256.png",
        "512": "icons\/privacy-guard-512.png"
    }
}