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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}