Rate My Professor Helper

Display your college's professor ratings directly on your school's registration page.

Τι είναι το Rate My Professor Helper;

Το Rate My Professor Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Wylie Mickelson, και η κύρια λειτουργία του είναι "Display your college's professor ratings directly on your school's registration page.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Rate My Professor Helper

Λήψη αρχείων επέκτασης Rate My Professor Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Full professor first AND last names must be visible on the page for this extension to work.

HOW TO USE:
1. Pin the extension to the top right of chrome
2. Search for your college or university, select one of the options, and SAVE. This will download all the data about your school's professors. (Can take up to 30 seconds or more to complete)
3. Navigate to your school's registration page or any site ending in .edu
4. In the bottom right corner of your screen, there will be a small blue button labeled RMP-H, click this and press update page to scan for professors.
5. Hover over the rating icon next to a found professor to bring up extra info in the bottom right, including a link to the ratemyprofessors.com page for that specific professor
6. When page content changes, re-click the update page button to rescan the page for new professors                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Rate My Professor Helper Rate My Professor Helper
ID hdblalhbknkmefefbkbpkonegomjeilo
Επίσημο URL https://chromewebstore.google.com/detail/rate-my-professor-helper/hdblalhbknkmefefbkbpkonegomjeilo
Περιγραφή Display your college's professor ratings directly on your school's registration page.
Μέγεθος Αρχείου 240 KB
Αριθμός Εγκαταστάσεων 126
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2023-09-10
Ημερομηνία Δημοσίευσης 2023-09-03
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Wylie Mickelson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Rate My Professor Helper",
    "description": "Display your college's professor ratings directly on your school's registration page.",
    "version": "1.2.2",
    "icons": {
        "16": ".\/assets\/grad-cap-16.png",
        "32": ".\/assets\/grad-cap-32.png",
        "48": ".\/assets\/grad-cap-48.png",
        "128": ".\/assets\/grad-cap-128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "action": {
        "default_title": "Rate My Professor Helper",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/assets\/grad-cap-16.png",
            "32": ".\/assets\/grad-cap-32.png",
            "48": ".\/assets\/grad-cap-48.png",
            "128": ".\/assets\/grad-cap-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*.edu\/*",
                "https:\/\/*.edu\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ]
}