Code Red

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

Apa itu Code Red?

Code Red adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension will prompt you to donate to the Red Cross.".

Unduh Berkas CRX Ekstensi Code Red

Unduh file ekstensi Code Red dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
URL Resmi https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
Deskripsi This extension will prompt you to donate to the Red Cross.
Ukuran File 75.56 KB
Jumlah Instalasi 19
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-12-13
Tanggal Publikasi 2016-12-13
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}