MultiSelect

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

Co to jest MultiSelect?

MultiSelect to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MultiSelect

Pobierz pliki rozszerzeń MultiSelect 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

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

Podstawowe informacje o rozszerzeniu

Nazwa MultiSelect MultiSelect
ID pgmbjfpmcplcjecijhebaaifghgoklhb
Oficjalny URL https://chromewebstore.google.com/detail/multiselect/pgmbjfpmcplcjecijhebaaifghgoklhb
Opis Allows the user to select multiple sections of text, highlight those selections, and export them as a single text document.
Rozmiar pliku 23.82 KB
Liczba instalacji 380
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2018-12-09
Data Publikacji 2018-12-09
Ocena 2.50/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}