Rachel's GDPR Consent Manager

Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.

Τι είναι το Rachel's GDPR Consent Manager;

Το Rachel's GDPR Consent Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rachel_hxh, και η κύρια λειτουργία του είναι "Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Rachel's GDPR Consent Manager

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

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

                        Rachel's GDPR Consent Manager
Project website: http://tiny.cc/rcm-project

- Our extension will start analyzing your cookies as soon as its installed, but all analysis will happen locally on your computer, ensuring your data security. 

- To start the auto/manual protection, please open a new tab, navigate to a site, and then check back to our extension dashboard.

- Rachel's Cookie Management is used for our academic research study to help users understand the existence of GDPR consent cookies. If you are installing our extension for the first time, the extension would pop up a survey website to help us gather your understanding of GDPR-related questions and improve future versions of our extension. Also, you could return to the survey website after months and update your answers. Only if you consent, your survey responses will be used in our research. Please note that even if you consent, we will never collect your personal data. Furthermore, we don’t store any personal identifiers in our collected survey data; any data collected will be used only for the purposes of non-commercial research, and all data will be deleted after the research project completes.

In "Main Menu" Panel:
The extension would automatically manage GDPR consent settings for all websites that the user visits, unless the user ticks the plus vector sign to uncheck the site from the auto protection. Apart form that, we provide a drop and drag to re-include those websites into the protection mechanism and withdrawal the previous consent as well. 

In "More details about sites" Panel:
Provide Information about the number of cookies stored in the in cookie, localStorage and sessionStorage, as well as the summarised classification result.

In "Show all Cookies" Panel:
- We are using machine learning models to classify cookies into four categories: Strictly Necessary, Functionality, Performance and Targeting/Advertising Cookies. Considering the accuracy and prediction speed, we choose Multinomial Naive Bayes classifier, providing over 90% accuracy of prediction.
- We offer two types of cookie listing: cookies grouped by cookie categories, or cookies grouped by visited websites                    

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

Όνομα Rachel's GDPR Consent Manager Rachel's GDPR Consent Manager
ID omjhcekkahgmgnnhgljhljocnfdbeelp
Επίσημο URL https://chromewebstore.google.com/detail/rachels-gdpr-consent-mana/omjhcekkahgmgnnhgljhljocnfdbeelp
Περιγραφή Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.
Μέγεθος Αρχείου 1.02 MB
Αριθμός Εγκαταστάσεων 366
Τρέχουσα Έκδοση 3.1.7
Τελευταία Ενημέρωση 2021-07-25
Ημερομηνία Δημοσίευσης 2020-10-26
Αξιολόγηση 4.43/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Rachel_hxh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://nms.kcl.ac.uk/netsys/projects/GDPR-consent-manager/index.html
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/rachelkcl/Lightbeam_Chrome/blob/master/Privacy%20Policy.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rachel's GDPR Consent Manager",
    "version": "3.1.7",
    "description": "Rachel's cookie manager is developed by KCL, UoS, IIT KGP as part of a study to understand how GDPR consent managed by users.",
    "short_name": "RachelCookie",
    "offline_enabled": true,
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "",
        "tabs",
        "storage",
        "cookies",
        "downloads",
        "devtools:\/\/*\/*",
        "chrome-extension:\/\/*",
        "https:\/\/nms.kcl.ac.uk\/netsys\/*"
    ],
    "browser_action": {
        "default_title": "Rachel's Cookie Manager",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "ext-libs\/dexie.js",
            "ext-libs\/mljs.min.js",
            "ext-libs\/store.min.js",
            "js\/classify.js",
            "js\/consentcheck.js",
            "js\/store.js",
            "js\/capture.js",
            "js\/background.js"
        ]
    },
    "options_page": "first-run.html"
}