Moodle Downloader

A chrome extension for downloading Moodle resources

Moodle Downloaderคืออะไร?

Moodle Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kmChrysalis และคุณลักษณะหลักของมันคือ "A chrome extension for downloading Moodle resources"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Moodle Downloader

ดาวน์โหลดไฟล์ส่วนขยาย Moodle Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        An open-source chrome extension that enables students to download files from Moodle with a click of a button!
Complete rework of similar extension by @harsilspatel, all credits at GitHub page.

* Hebrew support
* Fewer elements
* Bug fixes

IMPORTANT: Please save your resources out of standard 'Downloads' directory because the extension will overwrite any conflicted documents.

Bugs & ideas: https://forms.gle/HPAXPGUscXd8BGDr8
Source code: https://github.com/kmChrysalis/moodle-downloader
Support me: https://www.paypal.me/KonstantinMaltcev                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Moodle Downloader Moodle Downloader
ID egdgajocnmpjhghpglffhngdojcinkhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/moodle-downloader/egdgajocnmpjhghpglffhngdojcinkhn
คำอธิบาย A chrome extension for downloading Moodle resources
ขนาดไฟล์ 239 KB
จำนวนการติดตั้ง 930
เวอร์ชันปัจจุบัน 2.1.9
อัปเดตครั้งล่าสุด 2021-05-10
วันที่เผยแพร่ 2020-04-15
คะแนน 4.38/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา kmChrysalis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kmChrysalis/moodle-downloader
URL หน้าช่วยเหลือ https://www.paypal.me/KonstantinMaltcev
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/19bf9e30-c112-46d1-b13b-051b2a3944ab
ภาษาที่รองรับ iw
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moodle Downloader",
    "version": "2.1.9",
    "description": "A chrome extension for downloading Moodle resources",
    "icons": {
        "16": "assets\/icon16.png",
        "24": "assets\/icon24.png",
        "32": "assets\/icon32.png",
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png",
        "256": "assets\/icon256.png",
        "512": "assets\/icon512.png"
    },
    "browser_action": {
        "default_popup": "\/src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*course*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "downloads"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "assets\/*"
    ]
}