Switch to Audible Tab

Focus on tab that is currently making sound

Switch to Audible Tab क्या है?

Switch to Audible Tab klntsky द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Focus on tab that is currently making sound"।

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

screenshot
screenshot

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

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

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

                        This free and open source extension allows the user to switch to a tab that is making sound by clicking on the extension icon.

If there are multiple audible tabs, the extension will cycle through them and then return to the initial tab.

If there are no audible tabs, the extension will do nothing. Tabs that are muted by the user are also considered audible (this can be changed at the settings page).

If there are audible tabs belonging to other windows, these windows will be brought in focus too.

It is also possible to control the order in which the tabs will be visited: available options are 'left-to-right' and 'right-to-left'.                    

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

नाम Switch to Audible Tab Switch to Audible Tab
ID obhmhiijebijngjodncffkecfiolonom
आधिकारिक URL https://chromewebstore.google.com/detail/switch-to-audible-tab/obhmhiijebijngjodncffkecfiolonom
विवरण Focus on tab that is currently making sound
फ़ाइल का आकार 217 KB
स्थापना संख्या 111
वर्तमान संस्करण 0.0.9
अंतिम अपडेट 2021-12-13
प्रकाशन तिथि 2021-12-09
डेवलपर klntsky
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/klntsky/switch-to-audible-tab/
सहायता पृष्ठ URL https://github.com/klntsky/switch-to-audible-tab/issues/new
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switch to Audible Tab",
    "version": "0.0.9",
    "description": "Focus on tab that is currently making sound",
    "icons": {
        "128": "img\/128.png"
    },
    "background": {
        "scripts": [
            "dist\/browser-polyfill.js",
            "src\/background.js"
        ]
    },
    "options_ui": {
        "page": "static\/settings.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": {
            "128": "img\/128.png"
        },
        "default_title": "Switch to audible tab (Alt+Shift+A)"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Switch to audible tab",
            "suggested_key": {
                "default": "Alt+Shift+A"
            }
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "applications": {
        "gecko": {
            "id": "{0cd726db-f954-44f2-bf4f-7ed0de734de2}",
            "strict_min_version": "57.0"
        }
    }
}