Code Red

This extension will prompt you to donate to the Red Cross.

What is Code Red?

Code Red is a Chrome extension developed by Unknown, and its main feature is "This extension will prompt you to donate to the Red Cross.".

Download Code Red Extension CRX File

Download Code Red 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

                        This extension will prompt you to donate to the Red Cross when the page contains information about natural disasters or illness that require blood donation.                    

Extension Basic Information

Name Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Official URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Description This extension will prompt you to donate to the Red Cross.
File Size 75.56 KB
Installation Count 19
Current Version 1.0
Last Updated 2016-12-13
Publish Date 2016-12-13
Developer Unknown
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Red",
    "description": "This extension will prompt you to donate to the Red Cross.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "droplet48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "http:\/\/www.redcrossblood.org\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "droplet16.png",
        "48": "droplet48.png",
        "128": "droplet128.png"
    }
}