Code Red

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

Vad är Code Red?

Code Red är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension will prompt you to donate to the Red Cross.".

Ladda ner Code Red-förlängningens CRX-fil

Ladda ner Code Red-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
Officiell webbadress https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Beskrivning This extension will prompt you to donate to the Red Cross.
Filstorlek 75.56 KB
Antal Installationer 19
Aktuell Version 1.0
Senast Uppdaterad 2016-12-13
Publiceringsdatum 2016-12-13
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
    }
}