Copy and Search

Search the Web for currently selected text using keyboard shortcuts (Ctrl+Shift+G -> Google, +B -> Bing, +Y -> Yandex, +W -> Wiki)

Τι είναι το Copy and Search;

Το Copy and Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://karpolan.com, και η κύρια λειτουργία του είναι "Search the Web for currently selected text using keyboard shortcuts (Ctrl+Shift+G -> Google, +B -> Bing, +Y -> Yandex, +W -> Wiki)".

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

screenshot

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

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

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

                        How often do you select text, copy it, and then open new browser tab to search?

"Copy and Search" helps you to do the same with selected text just by pressing a single keyboard combination!

Moreover, there are different keyboard combinations for different search providers 
    Ctrl+Shift+G -> Google
    Ctrl+Shift+B -> Bing 
    Ctrl+Shift+Y -> Yandex 
    Ctrl+Shift+W -> Wiki

Cool isn't it? :)                    

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

Όνομα Copy and Search Copy and Search
ID cecncnbpbaagmnncemipofjkimmmhnld
Επίσημο URL https://chrome.google.com/webstore/detail/copy-and-search/cecncnbpbaagmnncemipofjkimmmhnld
Περιγραφή Search the Web for currently selected text using keyboard shortcuts (Ctrl+Shift+G -> Google, +B -> Bing, +Y -> Yandex, +W -> Wiki)
Μέγεθος Αρχείου 39.73 KB
Αριθμός Εγκαταστάσεων 159
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2013-07-16
Ημερομηνία Δημοσίευσης 2013-07-16
Αξιολόγηση 2.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής http://karpolan.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://karpolan.com/software/copy-and-search/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy and Search",
    "version": "1.0.5",
    "description": "Search the Web for currently selected text using keyboard shortcuts (Ctrl+Shift+G -> Google, +B -> Bing, +Y -> Yandex, +W -> Wiki)",
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "activeTab",
        "tabs"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "copy-and-search-bing": {
            "suggested_key": {
                "default": "Ctrl+Shift+B"
            },
            "description": "Bing search for selected text"
        },
        "copy-and-search-yandex": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Yandex search for selected text"
        },
        "copy-and-search-wiki": {
            "suggested_key": {
                "default": "Ctrl+Shift+W"
            },
            "description": "Wiki search for selected text"
        },
        "copy-and-search-google": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Google search for selected text"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "24": "icon-24.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "96": "icon-96.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "homepage_url": "http:\/\/karpolan.com\/software\/copy-and-search\/",
    "offline_enabled": true,
    "manifest_version": 2
}