CMS Enrollment extension

Enroll in courses on CMS with just one click!

CMS Enrollment extension란 무엇입니까?

CMS Enrollment extension은(는) Akshat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enroll in courses on CMS with just one click!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CMS Enrollment extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        [Chronofactorem support: Use this with the chronofactorem webapp for a smoother experience]

The extension to supercharge your CMS experience is right here!

Spending unnecessarily long time searching and enrolling for your courses again and again?
Tired of clicking through three pages just to unenroll from one course, and doing that for nine more times?
Wish you had something that would complete these tasks efficiently?

This CMS enrollment extension is the answer to your questions.
Bonus: Navigate quickly between course announcements with arrow keys, view your recently accessed courses and get back to them faster.

Install now and spend more time on the content, not on searching.

*This extension is not developed and not endorsed by Moodle.org                    

확장 프로그램 기본 정보

이름 CMS Enrollment extension CMS Enrollment extension
ID ebjldebpahljhpakgngnandakdbajdnj
공식 URL https://chromewebstore.google.com/detail/cms-enrollment-extension/ebjldebpahljhpakgngnandakdbajdnj
설명 Enroll in courses on CMS with just one click!
파일 크기 102 KB
설치 횟수 170
현재 버전 0.2.4
최근 업데이트 2024-01-08
출시 날짜 2021-12-31
평점 5.00/5 총 3 개의 평점
개발자 Akshat
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://akshat-oke.github.io/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CMS Enrollment extension",
    "description": "Enroll in courses on CMS with just one click!",
    "version": "0.2.4",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/cms.bits-hyderabad.ac.in\/*"
    ],
    "permissions": [
        "storage",
        "cookies"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/course\/*fromCMS=1*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*view.php*"
            ],
            "js": [
                "open_course.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/course\/*view.php*"
            ],
            "js": [
                "util\/close_tab.js",
                "util\/log_recent.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/enrol\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*unenrolself.php*"
            ],
            "js": [
                "enrol_in_course.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/my\/"
            ],
            "js": [
                "unenrol.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/enrol\/self\/unenrolself.php*"
            ],
            "js": [
                "confirm_unenrol.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/user\/managetoken.php*"
            ],
            "js": [
                "chrono.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cms.bits-hyderabad.ac.in\/mod\/forum\/discuss.php*"
            ],
            "js": [
                "util\/arrow_nav.js"
            ],
            "css": [
                "util\/arrow.css"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.chrono.crux-bphc.com\/*"
        ]
    },
    "action": {
        "default_popup": "popup.html"
    }
}