MultiSelect

Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.

Что такое MultiSelect?

MultiSelect - это расширение Chrome, разработанное Unknown, и его основная функция - "Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения MultiSelect

Скачайте файлы расширений MultiSelect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        MultiSelect allows you to select multiple snippets of text on a page, highlight them, and download them as a single plaintext file.                    

Основная информация о расширении

Название MultiSelect MultiSelect
ID pgmbjfpmcplcjecijhebaaifghgoklhb
Официальный URL https://chromewebstore.google.com/detail/multiselect/pgmbjfpmcplcjecijhebaaifghgoklhb
Описание Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.
Размер файла 23.82 KB
Количество установок 380
Текущая Версия 0.2
Последнее Обновление 2018-12-09
Дата публикации 2018-12-09
Рейтинг 2.50/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MultiSelect",
    "description": "Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.",
    "version": "0.2",
    "browser_action": {
        "default_icon": "msicon-48.png",
        "default_title": "Enable MultiSelect"
    },
    "icons": {
        "16": "msicon-16.png",
        "48": "msicon-48.png",
        "128": "msicon-128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "multiselect.js"
        ]
    }
}