Go To Playing Tab

This extension allows you to go to a tab that is emitting sound.

Τι είναι το Go To Playing Tab;

Το Go To Playing Tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mp, και η κύρια λειτουργία του είναι "This extension allows you to go to a tab that is emitting sound.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Go To Playing Tab

Λήψη αρχείων επέκτασης Go To Playing Tab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Tired of having a hard time looking for the tab that has the playing icon to go to the thing you were watching or listening to?

Sometimes you have lots of tabs open and finding the tab that's playing can be a hassle. 

This Chrome extension solves that problem by allowing you to go to the tab that is playing audio by simply clicking a button or with a keyboard shortcut.

Simply click on the button in the toolbar and you will go instantly to the tab that is playing audio.

It works with different windows too. You can be in Window A and if something is playing in Window B, Window B will be focused in the playing tab.

By default no keyboard shortcuts are specified, to set them go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom).

It can also close playing tabs with a keyboard shortcut or by right clicking on the icon. When you do the command once it will close all tabs emitting sound except the current tab, do the command again and it will close the current tab (if it's emitting sound). This is good if you're watching something and want to close all other tabs that are emitting sound except the thing you're watching.

I recommend using the keyboard shortcuts, I find them very useful, especially when they're set to global.

Update V2:
- Support for changing between 2 different playing tabs.
- Added keyboard shortcut to close all playing tabs.

Update V3:
- Fixed a thing pertaining global hotkeys and window focus.

Update V4:
- Made it so it wont close a playing tab that is focused unless it's the only one left.

Update V5:
- Added a context menu to close playing tabs. Right click the icon to see it.
- Fixed a problem with not all tabs closing.
- Now it cycles through all tabs that are emitting sound not just two.

Update V6:
- Now with true multi window support.

Update V6.3
- There are no longer default keyboard shortcuts to avoid interrupting workflows. You can set them manually in the settings.

Keywords:

Go to tab emitting sound
Change to tab with sound
Show tab that is sounding
Making noise
Close tabs with sound
Close tabs emitting sound                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Go To Playing Tab Go To Playing Tab
ID hmbhamadknmmkapmhbldodoajkcggcml
Επίσημο URL https://chromewebstore.google.com/detail/go-to-playing-tab/hmbhamadknmmkapmhbldodoajkcggcml
Περιγραφή This extension allows you to go to a tab that is emitting sound.
Μέγεθος Αρχείου 19.35 KB
Αριθμός Εγκαταστάσεων 13,964
Τρέχουσα Έκδοση 6.3
Τελευταία Ενημέρωση 2017-08-19
Ημερομηνία Δημοσίευσης 2017-08-19
Αξιολόγηση 4.83/5 Συνολικά 58 Αξιολογήσεις
Προγραμματιστής mp
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://brostack.com
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go To Playing Tab",
    "description": "This extension allows you to go to a tab that is emitting sound.",
    "version": "6.3",
    "browser_action": {
        "default_icon": {
            "38": "icon38.png"
        },
        "default_title": "Go To Playing Tab"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "goto_tab": {
            "description": "Go to playing tab"
        },
        "close_tabs": {
            "description": "Close playing tabs"
        }
    }
}