Replit SFX

Sound effects for actions on Replit

Replit SFXคืออะไร?

Replit SFX เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lachienoble11 และคุณลักษณะหลักของมันคือ "Sound effects for actions on Replit"

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

screenshot

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

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

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

                        https://replit.com/ is a website that allows you to run code live in your browser, but is pretty dull with sound effects.

This is an extension originally made for a Replit bounty posted by IroncladDev, to allow Replit to seem more lively with sound effects.                    

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

ชื่อ Replit SFX Replit SFX
ID jkgkkhigafclnmgpaklaljaggmninkdd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/replit-sfx/jkgkkhigafclnmgpaklaljaggmninkdd
คำอธิบาย Sound effects for actions on Replit
ขนาดไฟล์ 150 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-12-02
วันที่เผยแพร่ 2022-12-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา lachienoble11
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Replit SFX",
    "description": "Sound effects for actions on Replit",
    "version": "1.0",
    "action": {
        "default_popup": "volume.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/replit.com\/*",
                "https:\/\/firewalledreplit.com\/*"
            ],
            "js": [
                "\/hello.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "audio\/*"
            ],
            "matches": [
                "https:\/\/replit.com\/*",
                "https:\/\/firewalledreplit.com\/*"
            ]
        }
    ],
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}