Multiple Selection

Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.

Τι είναι το Multiple Selection;

Το Multiple Selection είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον k.ivanow, και η κύρια λειτουργία του είναι "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

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

screenshot
screenshot

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

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

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

                        Multiple selection is inspired by the Sublime Text Editor and does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.                    

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

Όνομα Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Επίσημο URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Περιγραφή Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Μέγεθος Αρχείου 13.67 KB
Αριθμός Εγκαταστάσεων 800
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2017-02-05
Ημερομηνία Δημοσίευσης 2017-02-05
Αξιολόγηση 2.73/5 Συνολικά 33 Αξιολογήσεις
Προγραμματιστής k.ivanow
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://janusworkspace.com
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multiple Selection",
    "description": "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.",
    "version": "1.1",
    "icons": {
        "256": "\/img\/icon256.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/clipboard.js",
                "\/js\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}