Webpage Downloader

It sends the webpage link to a local server for downloading, what more do you want

Что такое Webpage Downloader?

Webpage Downloader - это расширение Chrome, разработанное timber.gamer, и его основная функция - "It sends the webpage link to a local server for downloading, what more do you want".

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

screenshot

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

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

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

                        This extension reads a tab's url and sends it to a local server, use it for downloading videos with https://github.com/Timber1900/WebDL/releases/latest                    

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

Название Webpage Downloader Webpage Downloader
ID nfkaeignpggbjnhhijmggoeploenicdo
Официальный URL https://chromewebstore.google.com/detail/webpage-downloader/nfkaeignpggbjnhhijmggoeploenicdo
Описание It sends the webpage link to a local server for downloading, what more do you want
Размер файла 9.04 KB
Количество установок 3,152
Текущая Версия 2.5
Последнее Обновление 2021-10-28
Дата публикации 2020-12-29
Рейтинг 3.00/5 Всего 2 оценок
Разработчик timber.gamer
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Timber1900/WebDL/releases/latest
URL страницы помощи https://github.com/Timber1900/WebDL/issues/new/choose
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Webpage Downloader",
    "description": "It sends the webpage link to a local server for downloading, what more do you want",
    "version": "2.5",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/localhost\/",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/page-16.png",
            "32": "icons\/page-32.png",
            "48": "icons\/page-48.png"
        }
    },
    "icons": {
        "48": "icons\/page-48.png"
    }
}