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"
    ]
}