Dark Pattern Detector

Detects dark patterns and warns users about them.

Dark Pattern Detectorとは何ですか?

Dark Pattern DetectorはJose Reyesによって開発されたChromeの拡張機能で、その主な機能は「Detects dark patterns and warns users about them.」です。

拡張機能のスクリーンショット

screenshot

Dark Pattern Detector拡張機能のCRXファイルをダウンロード

Dark Pattern Detector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Extension to detect dark patterns in the wild.                    

拡張機能の基本情報

名前 Dark Pattern Detector Dark Pattern Detector
ID mjgjfppfhncpbgkggekjcaomikbokhmc
公式URL https://chromewebstore.google.com/detail/dark-pattern-detector/mjgjfppfhncpbgkggekjcaomikbokhmc
説明 Detects dark patterns and warns users about them.
ファイルサイズ 671 KB
インストール数 108
現在のバージョン 0.0.0.3
最終更新日 2020-06-07
公開日 2020-06-07
開発者 Jose Reyes
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://modernreliance.com/privacy-policy
対応言語 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'"
}