Privacy Manager

Manage privacy settings, browsing data deletion, quickly access page in incognito mode, manage cookies and monitor network traffic

Τι είναι το Privacy Manager;

Το Privacy Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον saroyanm, και η κύρια λειτουργία του είναι "Manage privacy settings, browsing data deletion, quickly access page in incognito mode, manage cookies and monitor network traffic".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Privacy Manager

Λήψη αρχείων επέκτασης Privacy Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Privacy Manager is completely free and open source chrome extension for data transparency and control.

Privacy Manager can help you with:
* Privacy Management
* Cookie Management
* Browsing data deletion on browser start
* Network monitoring

Privacy Management - Extension provides ability to manage current privacy settings (Enable/Disable):
* Blocks third-party sites from setting cookies.
* Hyperlink auditing management.
* Manage whether chrome must allow sending referrer headers with requests.
* Show alternate error pages or not.
* Automatically fill in forms settings management.
* Enable or disable 'OK, Google' to start a voice search
* Enable or disable password saving
* Enable safe browsing in case if the option is disabled by another extension (if safe - ---  - browsing is enabled Chrome does its best to protect you from phishing and malware).
* Enable or disable safe browsing reporting
* Search suggestion management.
* Enable or disable correct spelling service.
* Translate service switch.
* Network prediction management.
* Web RTC IP handling

Browsing data deletion on browser start:
* Clear websites appcaches.
* Clear browser cache.
* Clear browser cookies.
* Clear browser download list.
* Clear browser file system.
* Clear browser form data.
* Clear browser history.
* Clear websites IndexedDB data.
* Clear websites local storage data.
* Server-bound certificates.
* Clear stored passwords.
* Clear plugins data.
* Clear service workers
* Clear websites WebSQL data.

Cookie Management - is a tool for managing cookies (to use the tool you need to allow optional host permissions inside of the extension):
* View cookies attached to domains
* Filter cookies by domain
* Add/create cookie
* Modify cookie
* Delete single cookie
* Delete cookies from specific domain
* Delete All cookies

Network monitoring - User also can manage network traffic in popup window - collect http headers and also block user agent data to be sent via request, to use that feature you need to allow optional host permissions.

Github: https://github.com/Privacy-Managers/Privacy-Manager
Releases: https://github.com/Privacy-Managers/Privacy-Manager/releases
Issues and feature requests: https://github.com/Privacy-Managers/Privacy-Manager#reporting-bugs-suggestions-and-questions
Help me translate: https://github.com/Privacy-Managers/Privacy-Manager#translations

Privacy Policy: https://github.com/Privacy-Managers/Privacy-Manager/blob/master/privacy-policy.md

Contacts:
Email: [email protected]
Linkedin: http://www.linkedin.com/pub/manvel-saroyan/39/8a7/b22                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Privacy Manager Privacy Manager
ID giccehglhacakcfemddmfhdkahamfcmd
Επίσημο URL https://chromewebstore.google.com/detail/privacy-manager/giccehglhacakcfemddmfhdkahamfcmd
Περιγραφή Manage privacy settings, browsing data deletion, quickly access page in incognito mode, manage cookies and monitor network traffic
Μέγεθος Αρχείου 90.21 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 4.0.0
Τελευταία Ενημέρωση 2023-01-02
Ημερομηνία Δημοσίευσης 2020-03-06
Αξιολόγηση 4.25/5 Συνολικά 167 Αξιολογήσεις
Προγραμματιστής saroyanm
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Privacy-Managers/Privacy-Manager
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Privacy-Managers/Privacy-Manager#reporting-bugs-suggestions-and-questions
Υποστηριζόμενες Γλώσσες de,en-US,fr,ru
manifest.json
{
    "manifest_version": 3,
    "default_locale": "en_US",
    "name": "__MSG_chrome_extension_name__",
    "description": "__MSG_chrome_extension_description__",
    "background": {
        "service_worker": "js\/back.js"
    },
    "action": {
        "default_icon": "img\/logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/logo-16x16.png",
        "48": "img\/logo-48x48.png",
        "128": "img\/logo.png"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "block-agent",
                "enabled": false,
                "path": "agent-block.json"
            }
        ]
    },
    "optional_host_permissions": [
        ""
    ],
    "permissions": [
        "privacy",
        "cookies",
        "browsingData",
        "tabs",
        "webRequest",
        "declarativeNetRequestWithHostAccess",
        "storage"
    ],
    "incognito": "split",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.0.0"
}