Tab Panel

This extension allow you to switch tab easly.

Τι είναι το Tab Panel;

Το Tab Panel είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cdenis, και η κύρια λειτουργία του είναι "This extension allow you to switch tab easly.".

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

screenshot

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

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

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

                        Sublime Text panel like for tabs, fuzzy search and easily switch between your two last active tabs.

Disclamer : this is a beta. I love feed back and i'm also looking for a cool icon

hidden feature : you can select / deselect currently highlighted tab in the list with the key tab and then close your selection with W

Source code : https://github.com/kigiri/TabPanel

Changelog :
0.6.1
 - Fix typo that was bugging out clicking and some favIcon to load
0.6.0
 - Middle click can close tabs
 - Fix current tab not updating properly with multiple windows
 - Added newly unseen tab to the top of the default sort
 - New shortcut (A) to select all matches from selection mode (tab)
 - New shortcut to move selected tabs to current window
0.5.3
 - Try to fix missing / broken icon with default icon before replacing
0.5.2
 - Fix generating favIcons for website still loading it
0.5.0
 - Fix fuzzySearch crash on windows with no titles
 - Inject generated favIcons in the pages
0.4.0
 - Generate favIcons for pages without favIcons
0.3.0
 - Fix chrome:// favIcons
 - Start working on alt + tab like feature to switch between tabs
0.2.0
 - Various fixes and performance improvements
 - Design improvements
0.1.3
 - New Icon
0.1.2
 - Default favicon instead of blank space
 - Few smalls bug fixes
0.1.1
 - Enable clicking on tabs
 - Improved Search
 - Place selection to first result by default
 - Fix lost selection after closing multiple selection                    

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

Όνομα Tab Panel Tab Panel
ID kaklldaepoppngjnfpnkgnmlihilkioa
Επίσημο URL https://chromewebstore.google.com/detail/tab-panel/kaklldaepoppngjnfpnkgnmlihilkioa
Περιγραφή This extension allow you to switch tab easly.
Μέγεθος Αρχείου 78.46 KB
Αριθμός Εγκαταστάσεων 175
Τρέχουσα Έκδοση 0.6.1
Τελευταία Ενημέρωση 2015-05-06
Ημερομηνία Δημοσίευσης 2015-05-06
Αξιολόγηση 4.90/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής cdenis
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Panel",
    "short_name": "TabPanel",
    "description": "This extension allow you to switch tab easly.",
    "version": "0.6.1",
    "permissions": [
        "tabs",
        "chrome:\/\/favicon\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injected.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+P",
                "windows": "Alt+P",
                "chromeos": "Alt+P",
                "linux": "Alt+P",
                "mac": "Alt+P"
            }
        }
    },
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "favicons\/*.png"
    ]
}