RateMyTracks

Get clear insights into professors at the University of Alberta while browsing Beartracks.

RateMyTracks क्या है?

RateMyTracks RateMyTracks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get clear insights into professors at the University of Alberta while browsing Beartracks."।

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

screenshot
screenshot
screenshot

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

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

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

                        RateMyTracks helps you find the best classes to take when building a schedule on BearTracks. 

It does this by displaying ratings and linking reviews from Rate My Professors within Beartracks, no other setup required.

Features:
- Shows the Rate My Professors rating next to each professor's name
- Each professor's name becomes a link to their reviews
- Button to control when the extension is on
- Seamlessly integrated into Beartracks, just install and go
- 100% free no payment required

RateMyTracks is not endorsed or sponsored by the University of Alberta or Rate My Professors.

Developed in Edmonton by Youssef Ismail, Rupin Bapuji, Bennett Wiredu, and Kourosh Kehtari.                    

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

नाम RateMyTracks RateMyTracks
ID fejbmlpffkoiinhibcojnjldfhedomfe
आधिकारिक URL https://chromewebstore.google.com/detail/ratemytracks/fejbmlpffkoiinhibcojnjldfhedomfe
विवरण Get clear insights into professors at the University of Alberta while browsing Beartracks.
फ़ाइल का आकार 105 KB
स्थापना संख्या 249
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2021-07-23
प्रकाशन तिथि 2021-07-21
डेवलपर RateMyTracks
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://forms.gle/fFzfrTCQYAqk18zS9
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyTracks",
    "description": "Get clear insights into professors at the University of Alberta while browsing Beartracks.",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "profData.json"
            ],
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}