Open Multiple Links

Select text with links and open them all in new tabs

Что такое Open Multiple Links?

Open Multiple Links - это расширение Chrome, разработанное Marcin Jahn, и его основная функция - "Select text with links and open them all in new tabs".

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

screenshot

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

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

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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

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

Название Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Официальный URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Описание Select text with links and open them all in new tabs
Размер файла 22.89 KB
Количество установок 2,362
Текущая Версия 1.0.0
Последнее Обновление 2023-01-10
Дата публикации 2023-01-08
Рейтинг 1.67/5 Всего 6 оценок
Разработчик Marcin Jahn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://marcinjahn.com
URL страницы помощи https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}