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
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
Электронная почта k.ivanow@gmail.com
Тип оплаты 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"
        }
    ]
}