Tab Scissors

This extension splits a window into two at the selected tab.

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

Το Tab Scissors είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tir, και η κύρια λειτουργία του είναι "This extension splits a window into two at the selected tab.".

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

screenshot

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

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

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

                        This simple tab organization tool divides one window into two.

If you have at least two tabs in the selected Chrome window, it will split that window into two smaller side-by-side windows. All the tabs on the left side of the selected tab will stay in the left window, and the rest will move to the window on the right. 

It is especially helpful for those who have lots of tabs opened at a time.

This extension works great with Tab Glue (http://bit.ly/WjGnm7), which will glue all those pesky Chrome windows back together.

Version 1.2 Update: You can now also perform a glue or cut using a shortcut specified on the chrome extensions page. Default is Alt+S to cut, Alt+G to glue, Alt+A to glue all (including minimized windows)                    

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

Όνομα Tab Scissors Tab Scissors
ID cdochbecpfdpjobpgnacnbepkgcfhoek
Επίσημο URL https://chrome.google.com/webstore/detail/tab-scissors/cdochbecpfdpjobpgnacnbepkgcfhoek
Περιγραφή This extension splits a window into two at the selected tab.
Μέγεθος Αρχείου 10.6 KB
Αριθμός Εγκαταστάσεων 700,000
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2013-10-06
Ημερομηνία Δημοσίευσης 2013-10-06
Αξιολόγηση 4.09/5 Συνολικά 205 Αξιολογήσεις
Προγραμματιστής Tir
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Scissors",
    "description": "This extension splits a window into two at the selected tab.",
    "version": "1.2",
    "background": {
        "scripts": [
            "glueTabs.js",
            "splitTabs.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "browser_action": {
        "default_title": "Split @ selected tab",
        "default_icon": "icon10.png"
    },
    "commands": {
        "tab_scissor_cut": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Split at selected tab"
        },
        "tab_glue": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Glue windows together"
        },
        "tab_glue_all": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Glue windows together, including minimized windows"
        }
    },
    "options_page": "options.html"
}