ArchiveBox Exporter
Automatically or manually send pages to your ArchiveBox for archival.
Что такое ArchiveBox Exporter?
ArchiveBox Exporter - это расширение Chrome, разработанное ArchiveBox, и его основная функция - "Automatically or manually send pages to your ArchiveBox for archival.".
Снимки экрана расширения
Скачать файл CRX расширения ArchiveBox Exporter
Скачайте файлы расширений ArchiveBox Exporter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Preserve the web while you browse by connecting your browser to ArchiveBox. You can set up ArchiveBox Exporter to automatically push your browsing history to an ArchiveBox instance based on a set of criteria (specific domains or URLs matching regexes). You can also add pages manually to your ArchiveBox through the context menu.
Основная информация о расширении
Название | ArchiveBox Exporter |
ID | habonpimjphpdnmcfkaockjnffodikoj |
Официальный URL | https://chromewebstore.google.com/detail/archivebox-exporter/habonpimjphpdnmcfkaockjnffodikoj |
Описание | Automatically or manually send pages to your ArchiveBox for archival. |
Размер файла | 31.47 KB |
Количество установок | 1,026 |
Текущая Версия | 1.3.0 |
Последнее Обновление | 2021-07-04 |
Дата публикации | 2021-07-02 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | ArchiveBox |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/tjhorner/archivebox-exporter |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ArchiveBox Exporter", "description": "Automatically or manually send pages to your ArchiveBox for archival.", "version": "1.3.0", "manifest_version": 2, "browser_specific_settings": { "gecko": { "id": "[email protected]" } }, "icons": { "128": "static\/128.png" }, "permissions": [ "history", "contextMenus", "storage", "alarms" ], "optional_permissions": [ "*:\/\/*\/*" ], "browser_action": { "default_title": "ArchiveBox", "default_popup": "static\/action.html" }, "background": { "scripts": [ "background.js" ] } } |