Copy Tabs

Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs

Τι είναι το Copy Tabs;

Το Copy Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://codingeverything.blogspot.com, και η κύρια λειτουργία του είναι "Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs".

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

screenshot

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

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

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

                        Saving a large number of tabs can after a particularly fervent browsing session can sometimes be quite a hassle.  Copy and pasting back and forth between your browser and text field.

Now you can copy the web url and web page title as one single formatted link for every highlighted tab in the current window.

In chrome, you can highlight multiple tabs the same multiple selection is typically handled, either by holding down control and selecting individual tabs or shift to select a range.

Using the new keyboard shortcut, Ctrl + Shift + C, add all the links to your clipboard and paste them wherever you like with the standard paste operation.

You can follow or fork the extension at GitHub
https://github.com/KyleMit/ChromeCopyTabs

All code is open source and protected by the MIT developer licence (c) 2013 Kyle Mitofsky                    

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

Όνομα Copy Tabs Copy Tabs
ID efmfdbcopjfmgoefenohhlcplheclbeo
Επίσημο URL https://chrome.google.com/webstore/detail/copy-tabs/efmfdbcopjfmgoefenohhlcplheclbeo
Περιγραφή Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs
Μέγεθος Αρχείου 61.43 KB
Αριθμός Εγκαταστάσεων 29
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2013-07-17
Ημερομηνία Δημοσίευσης 2013-07-17
Αξιολόγηση 1.40/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής http://codingeverything.blogspot.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Tabs",
    "version": "0.1",
    "description": "Creates a keyboard shortcut (Ctrl + Shift + C) which copies links for selected tabs",
    "icons": {
        "16": "Icons\/Logo16.png",
        "32": "Icons\/Logo32.png",
        "48": "Icons\/Logo48.png",
        "128": "Icons\/Logo128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "clipboardRead"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "copy-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            },
            "description": "Copy Selected Tab Links"
        }
    }
}