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.

Qu'est-ce que Multiple Selection ?

Multiple Selection est une extension Chrome développée par k.ivanow, et sa fonction principale est "Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Multiple Selection

Téléchargez les fichiers d'extension Multiple Selection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
URL Officiel https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Description Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Taille du Fichier 13.67 KB
Nombre d'Installations 800
Version Actuelle 1.1
Dernière Mise à Jour 2017-02-05
Date de Publication 2017-02-05
Évaluation 2.73/5 Total 33 Évaluations
Développeur k.ivanow
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://janusworkspace.com
Langues Prises en Charge 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"
        }
    ]
}