Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

Τι είναι το Tab Mover (Move tabs with keyboard shortcuts);

Το Tab Mover (Move tabs with keyboard shortcuts) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dennis Paagman, και η κύρια λειτουργία του είναι "Move your tabs around with keyboard shortcuts".

Λήψη αρχείου CRX της επέκτασης Tab Mover (Move tabs with keyboard shortcuts)

Λήψη αρχείων επέκτασης Tab Mover (Move tabs with keyboard shortcuts) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Move your tabs around with keyboard shortcuts.

Installation instructions:

Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]                    

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

Όνομα Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
Επίσημο URL https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
Περιγραφή Move your tabs around with keyboard shortcuts
Μέγεθος Αρχείου 19.11 KB
Αριθμός Εγκαταστάσεων 46
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2016-11-25
Ημερομηνία Δημοσίευσης 2016-11-25
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Dennis Paagman
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Mover (Move tabs with keyboard shortcuts)",
    "short_name": "Tab Mover",
    "description": "Move your tabs around with keyboard shortcuts",
    "version": "1.2",
    "author": "Dennis Paagman",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "tabMover.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "move-tab-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Move current tab to the left"
        },
        "move-tab-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Move current tab to the right"
        }
    }
}