Outside Sound

Applies a filter to currently playing audio and makes it sound like you have left the room.

Outside Sound क्या है?

Outside Sound thezanke द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Applies a filter to currently playing audio and makes it sound like you have left the room."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Outside Sound एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        When activated, creates a lowpass filter node in the HTML5 Audio API sound graph and routes the sound from all 

एक्सटेंशन की मूल जानकारी

नाम Outside Sound Outside Sound
ID lebiilodohbecpcjkjfekdeckepapieh
आधिकारिक URL https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh
विवरण Applies a filter to currently playing audio and makes it sound like you have left the room.
फ़ाइल का आकार 9.54 KB
स्थापना संख्या 94
वर्तमान संस्करण 1.0.2
अंतिम अपडेट 2020-10-19
प्रकाशन तिथि 2020-10-08
रेटिंग 5.00/5 कुल 9 रेटिंग्स
डेवलपर thezanke
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://alexhoward.io
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outside Sound",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Applies a filter to currently playing audio and makes it sound like you have left the room.",
    "homepage_url": "https:\/\/alexhoward.io",
    "icons": {
        "128": "icons\/icon128-outside.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128-inside.png",
        "default_title": "Step outside ->"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}