Jelly

A Chrome extension to automatically create flashcards

Что такое Jelly?

Jelly - это расширение Chrome, разработанное patricknaughton01, и его основная функция - "A Chrome extension to automatically create flashcards".

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

screenshot

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

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

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

                                            

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

Название Jelly Jelly
ID akjcaoaphdpachmanngejenhgoojflkb
Официальный URL https://chromewebstore.google.com/detail/jelly/akjcaoaphdpachmanngejenhgoojflkb
Описание A Chrome extension to automatically create flashcards
Размер файла 1010 KB
Количество установок 71
Текущая Версия 0.4
Последнее Обновление 2018-09-17
Дата публикации 2018-09-16
Рейтинг 4.00/5 Всего 1 оценок
Разработчик patricknaughton01
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jelly",
    "version": "0.4",
    "description": "A Chrome extension to automatically create flashcards",
    "background": {
        "scripts": [
            "js\/jquery-3.3.1.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js",
                "js\/jquery-3.3.1.min.js",
                "js\/quizletinject.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "web_accessible_resources": [
        "img\/icon.png",
        "img\/anki_logo.jpg",
        "img\/quizlet_logo.png",
        "img\/loading.gif",
        "html\/card-template.html",
        "html\/notification.html",
        "html\/anki\/text-fb-card.html"
    ],
    "permissions": [
        "storage",
        "identity",
        "tabs"
    ]
}