Save to Marvin

Create a task in Amazing Marvin for the current page

Что такое Save to Marvin?

Save to Marvin - это расширение Chrome, разработанное Joe Trellick, и его основная функция - "Create a task in Amazing Marvin for the current page".

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

screenshot

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

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

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

                        A simple Chrome extension to save the current web page to the Amazing Marvin productivity service.

You can customize the title and other metadata of the task. The URL of the current tab will be saved as a note on the task.

This extension requires an Amazing Marvin account, as it uses the API to create a new item.

NOTE: This is an unofficial project, not related to the creators of the Amazing Marvin service.                    

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

Название Save to Marvin Save to Marvin
ID cncjnpmkggapklejcdboihglnffmcolb
Официальный URL https://chromewebstore.google.com/detail/save-to-marvin/cncjnpmkggapklejcdboihglnffmcolb
Описание Create a task in Amazing Marvin for the current page
Размер файла 12.28 KB
Количество установок 245
Текущая Версия 1.0
Последнее Обновление 2021-02-10
Дата публикации 2021-02-10
Рейтинг 4.50/5 Всего 6 оценок
Разработчик Joe Trellick
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/joehughes/savetomarvin
URL страницы политики конфиденциальности https://github.com/joe-trellick/savetomarvin/blob/main/PrivacyPolicy.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save to Marvin",
    "version": "1.0",
    "description": "Create a task in Amazing Marvin for the current page",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/save-to-marvin-16.png",
        "32": "images\/save-to-marvin-32.png",
        "48": "images\/save-to-marvin-48.png",
        "128": "images\/save-to-marvin-128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}