Code Red

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

Code Redとは何ですか?

Code RedはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension will prompt you to donate to the Red Cross.」です。

Code Red拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Code Red Code Red
ID jdngchomflhbiclhdbpgacpjhfhnockl
公式URL https://chromewebstore.google.com/detail/code-red/jdngchomflhbiclhdbpgacpjhfhnockl
説明 This extension will prompt you to donate to the Red Cross.
ファイルサイズ 75.56 KB
インストール数 19
現在のバージョン 1.0
最終更新日 2016-12-13
公開日 2016-12-13
開発者 Unknown
支払い方法 free
対応言語 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"
    }
}