Code Red

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

Code Redคืออะไร?

Code Red เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will prompt you to donate to the Red Cross."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Code Red

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}