Banana-facts

This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.

Banana-factsคืออะไร?

Banana-facts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย can kurt และคุณลักษณะหลักของมันคือ "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Banana-facts

ดาวน์โหลดไฟล์ส่วนขยาย Banana-facts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Banana-facts Banana-facts
ID hjncmkifldhcffmlicejlemjlmbflblk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/banana-facts/hjncmkifldhcffmlicejlemjlmbflblk
คำอธิบาย This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.
ขนาดไฟล์ 15.59 KB
จำนวนการติดตั้ง 54
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2023-12-20
วันที่เผยแพร่ 2021-01-04
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา can kurt
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Banana-facts",
    "description": "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.",
    "version": "0.1.1",
    "icons": {
        "48": "static\/images\/banana.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/banana.js"
            ],
            "css": [
                "static\/css\/banana.css",
                "static\/css\/popup.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/images\/banana.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}