UBC LaTeX Transcript

Create a LaTeX transcript from your UBC Grades Summary!

UBC LaTeX Transcript क्या है?

UBC LaTeX Transcript ubclatextranscript द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create a LaTeX transcript from your UBC Grades Summary!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UBC LaTeX Transcript एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Currently, the unofficial transcript at the University of British Columbia (UBC) consists of a poorly formatted printout of the student Grades Summary page. This extension can provide a more professional-looking transcript that resembles the official version.

The resulting transcript is loaded into Overleaf (www.overleaf.com), a popular online LaTeX editor. From there, it can be downloaded as a PDF or further edited.

How to use this extension
1. Sign up for a free Overleaf account if you don't have one already.
2. Navigate to "Your Grades Summary" in the Student Service Centre (SSC).
3. Click on the extension and adjust any options.
4. Click on "Generate Transcript".
5. Click on "View Transcript in Overleaf" to load your transcript into Overleaf.

Screenshots
Image 1: All Sessions Transcript before and after (with row borders).
Image 2: Extension popup window.
Image 3: Transcript generated with "Group courses by session" option selected. 

How it works
1. A LaTeX transcript is generated using the information from "Your Grades Summary".
2. When the "View Transcript in Overleaf" button is clicked, an HTML form POST request containing your transcript is sent to the Overleaf API (www.overleaf.com/devs).                    

एक्सटेंशन की मूल जानकारी

नाम UBC LaTeX Transcript UBC LaTeX Transcript
ID kfkhdllleecjpgamiadfdeffgjmljhkp
आधिकारिक URL https://chromewebstore.google.com/detail/ubc-latex-transcript/kfkhdllleecjpgamiadfdeffgjmljhkp
विवरण Create a LaTeX transcript from your UBC Grades Summary!
फ़ाइल का आकार 187 KB
स्थापना संख्या 60
वर्तमान संस्करण 0.1.6
अंतिम अपडेट 2024-01-29
प्रकाशन तिथि 2023-12-29
डेवलपर ubclatextranscript
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/sarah157/ubc-latex-transcript/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UBC LaTeX Transcript",
    "description": "Create a LaTeX transcript from your UBC Grades Summary!",
    "version": "0.1.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ssc.adm.ubc.ca\/sscportal\/servlets\/SSCMain.jsp?function=SessGradeRpt*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "UBC LaTeX Transcript",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}