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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم 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"
    ]
}