Code Red

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

Qu'est-ce que Code Red ?

Code Red est une extension Chrome développée par Unknown, et sa fonction principale est "This extension will prompt you to donate to the Red Cross.".

Télécharger le fichier CRX de l'extension Code Red

Téléchargez les fichiers d'extension Code Red au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
URL Officiel https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Description This extension will prompt you to donate to the Red Cross.
Taille du Fichier 75.56 KB
Nombre d'Installations 19
Version Actuelle 1.0
Dernière Mise à Jour 2016-12-13
Date de Publication 2016-12-13
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
    }
}