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.

Was ist Multiple Selection?

Multiple Selection ist eine Chrome-Erweiterung, die von k.ivanow entwickelt wurde, und ihr Hauptmerkmal ist "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Erweiterungsscreenshots

screenshot
screenshot

Multiple Selection-Erweiterungs-CRX-Datei herunterladen

Laden Sie Multiple Selection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Offizielle URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Beschreibung Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Dateigröße 13.67 KB
Installationsanzahl 800
Aktuelle Version 1.1
Letztes Update 2017-02-05
Veröffentlichungsdatum 2017-02-05
Bewertung 2.73/5 Insgesamt 33 Bewertungen
Entwickler k.ivanow
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://janusworkspace.com
Unterstützte Sprachen 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"
        }
    ]
}