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.

Co to jest Multiple Selection?

Multiple Selection to rozszerzenie Chrome opracowane przez k.ivanow, a jego główną funkcją jest „Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Multiple Selection

Pobierz pliki rozszerzeń Multiple Selection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Multiple Selection Multiple Selection
ID cnccnjdknbhcdcenjmelmlkpklbhlieg
Oficjalny URL https://chromewebstore.google.com/detail/multiple-selection/cnccnjdknbhcdcenjmelmlkpklbhlieg
Opis Multiple selection does just what the name suggest - it allows you to have multiple selections at the same time, which you can copy.
Rozmiar pliku 13.67 KB
Liczba instalacji 800
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2017-02-05
Data Publikacji 2017-02-05
Ocena 2.73/5 Łącznie 33 Oceny
Deweloper k.ivanow
E-mail k.ivanow@gmail.com
Typ Płatności free
Adres URL Strony Polityki Prywatności https://janusworkspace.com
Obsługiwane Języki 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"
        }
    ]
}