AOE Twitch Sounds

Plays AOE sound effects for twitch chat

AOE Twitch Sounds क्या है?

AOE Twitch Sounds younglunaman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Plays AOE sound effects for twitch chat"।

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

screenshot
screenshot

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

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

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

                        Plays Age of Empires II audio effects on Twitch.tv live streams.

Just download the extension andthen go to an Age of Empires Twitch.tv live streamers channel, if you don't know what that is or where to go here's a link to the game category for twitch https://www.twitch.tv/directory/game/Age%20of%20Empires%20II , simply click on that link with the browser extension downloaded, and then type a number into the chat ranging from 1-105, you should hear a audio effect play.

Supports taunts 1-105 in the game Age of Empires II
customize options for the taunts you can play, and the delay between them
caps out max number of taunts, with cooldown period to prevent spam.
Dynamic volume, volume is based off of twitch stream volume for the taunts, also read's pausing stream and other features
Same system of playing taunt effects as the actual game as far as I can tell.

Note: If your web-browser doesn't support firefox or chrome extensions then please let me know or if it's having any issues on your browser then let me know.                    

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

नाम AOE Twitch Sounds AOE Twitch Sounds
ID niodfkndhcmhngfimiajikkbolhigakj
आधिकारिक URL https://chromewebstore.google.com/detail/aoe-twitch-sounds/niodfkndhcmhngfimiajikkbolhigakj
विवरण Plays AOE sound effects for twitch chat
फ़ाइल का आकार 4.12 MB
स्थापना संख्या 51
वर्तमान संस्करण 1.0.9
अंतिम अपडेट 2021-04-21
प्रकाशन तिथि 2021-04-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर younglunaman
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/blockheads/AOETwitchSounds
सहायता पृष्ठ URL https://github.com/blockheads/AOETwitchSounds
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AOE Twitch Sounds",
    "description": "Plays AOE sound effects for twitch chat",
    "version": "1.0.9",
    "manifest_version": 2,
    "web_accessible_resources": [
        "sounds\/*.ogg",
        "images\/*.jpg",
        "images\/*.png",
        "icons\/*.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*",
                "http:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "constants.js",
                "observerManager.js",
                "options.js",
                "tauntPlayer.js",
                "uiManager.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs"
    ]
}