Technion Moodle Connector

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

Technion Moodle Connector là gì?

Technion Moodle Connector là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A simple Firefox addon to automate the login process to the Technion's Moodle website".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Technion Moodle Connector

Tải xuống các tệp mở rộng Technion Moodle Connector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Technion Moodle Connector Technion Moodle Connector
ID cfgmacalelmffegnfkdofhfmjpbmekfp
URL Chính Thức https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp
Mô tả A simple Firefox addon to automate the login process to the Technion's Moodle website
Kích Thước Tệp 174 KB
Số Lần Cài Đặt 502
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2015-12-20
Ngày Phát Hành 2015-12-20
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}