tabswitcher

TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…

Τι είναι το tabswitcher;

Το tabswitcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://jhchabran.com, και η κύρια λειτουργία του είναι "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".

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

screenshot

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

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

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

                        TL;DR Remember Textmate's Command-T ? It's the same for chrome. 

Warning: shortcut has to be manually set in chrome's extension settings.  
Suggestion: use alt-space.                    

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

Όνομα tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
Επίσημο URL https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Περιγραφή TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Μέγεθος Αρχείου 375 KB
Αριθμός Εγκαταστάσεων 22
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2015-09-29
Ημερομηνία Δημοσίευσης 2015-09-29
Αξιολόγηση 4.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://jhchabran.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jhchabran/tabswitcher
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tabswitcher",
    "version": "1.0.2",
    "browser_action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "tabswitcher.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "tabswitcher.js",
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}