Technion Moodle Connector

A simple Firefox addon to automate the login process to the Technion's Moodle website

Apa itu Technion Moodle Connector?

Technion Moodle Connector adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "A simple Firefox addon to automate the login process to the Technion's Moodle website".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Technion Moodle Connector

Unduh file ekstensi Technion Moodle Connector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        A simple Chrome and Firefox addon to automate the login process to the Technion's Moodle website                    

Informasi Dasar Ekstensi

Nama Technion Moodle Connector Technion Moodle Connector
ID cfgmacalelmffegnfkdofhfmjpbmekfp
URL Resmi https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp
Deskripsi A simple Firefox addon to automate the login process to the Technion's Moodle website
Ukuran File 174 KB
Jumlah Instalasi 502
Versi Saat Ini 1.2.2
Terakhir Diperbarui 2015-12-20
Tanggal Publikasi 2015-12-20
Penilaian 4.33/5 Total 6 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Technion Moodle Connector",
    "author": "Daniel Mittelman",
    "description": "A simple Firefox addon to automate the login process to the Technion's Moodle website",
    "version": "1.2.2",
    "icons": {
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "64": "res\/icon64.png",
        "128": "res\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "res\/icon32.png",
        "default_popup": "panel.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/moodle.technion.ac.il\/*",
                "https:\/\/moodle.technion.ac.il\/*"
            ],
            "js": [
                "res\/js\/init_message.js",
                "res\/js\/get-login-state.js",
                "res\/js\/connecting-overlay.js",
                "res\/js\/skip_file_pages.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "res\/*"
    ],
    "permissions": [
        "tabs",
        "*:\/\/moodle.technion.ac.il\/*"
    ]
}