Dark Pattern Detector

Detects dark patterns and warns users about them.

What is Dark Pattern Detector?

Dark Pattern Detector is a Chrome extension developed by Jose Reyes, and its main feature is "Detects dark patterns and warns users about them.".

Extension Screenshots

screenshot

Download Dark Pattern Detector Extension CRX File

Download Dark Pattern Detector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Extension to detect dark patterns in the wild.                    

Extension Basic Information

Name Dark Pattern Detector Dark Pattern Detector
ID mjgjfppfhncpbgkggekjcaomikbokhmc
Official URL https://chromewebstore.google.com/detail/dark-pattern-detector/mjgjfppfhncpbgkggekjcaomikbokhmc
Description Detects dark patterns and warns users about them.
File Size 671 KB
Installation Count 108
Current Version 0.0.0.3
Last Updated 2020-06-07
Publish Date 2020-06-07
Developer Jose Reyes
Email [email protected]
Payment Type free
Privacy Policy Page URL https://modernreliance.com/privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark Pattern Detector",
    "description": "Detects dark patterns and warns users about them.",
    "version": "0.0.0.3",
    "author": "Jose Reyes",
    "browser_action": {
        "default_icon": "assets\/icons\/favicon-16x16.png",
        "default_title": "Dark Pattern Detector",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "\/assets\/icons\/favicon-16x16.png",
        "48": "assets\/icons\/android-icon-48x48.png",
        "128": "assets\/icons\/chrome-icon-128x128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/scripts\/utilities.js",
                "assets\/scripts\/styles.js",
                "assets\/scripts\/detect-patterns.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-P0IazfM0r\/BDdtl39tH5ggbSeB9KT7VhG4l+Dv+r6CE='; object-src 'self'"
}