RateMySunDevil

Pull ratings from ratemyprofessors.com and show directly in MyASU class search.

RateMySunDevilคืออะไร?

RateMySunDevil เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew และคุณลักษณะหลักของมันคือ "Pull ratings from ratemyprofessors.com and show directly in MyASU class search."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RateMySunDevil

ดาวน์โหลดไฟล์ส่วนขยาย RateMySunDevil ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Pulls ratings from ratemyprofessors.com and show them in a panel at the top right when mousing over a professor in class search. If the panel does not update while mousing over, there are no reviews yet. Hide the panel by clicking the button. Click on the professors name in the panel to view their official ratemyprofessor page.

Clicking the extension button in your Chrome browser will open a popup to search directly for a professor by last name and will open that search on ratemyprofessor.com in a new tab.

For ASU students!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RateMySunDevil RateMySunDevil
ID epdifhgkiofeeogajceffcgiipcmdjgh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ratemysundevil/epdifhgkiofeeogajceffcgiipcmdjgh
คำอธิบาย Pull ratings from ratemyprofessors.com and show directly in MyASU class search.
ขนาดไฟล์ 155 KB
จำนวนการติดตั้ง 106
เวอร์ชันปัจจุบัน 0.6
อัปเดตครั้งล่าสุด 2015-11-02
วันที่เผยแพร่ 2015-11-02
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Matthew
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RateMySunDevil",
    "description": "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.",
    "version": "0.6",
    "browser_action": {
        "default_icon": "img\/rmsdicon.png",
        "default_title": "RateMySunDevil!",
        "default_popup": "reviewPopup.html"
    },
    "icons": {
        "16": "img\/rmsdicon.png",
        "48": "img\/rmsdicon.png",
        "128": "img\/rmsdicon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/www.ratemyprofessors.com\/*",
        "https:\/\/webapp4.asu.edu\/catalog*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asu.edu\/catalog\/classlist*"
            ],
            "js": [
                "jquery\/jquery.js",
                "contentScript.js",
                "jquery\/jquery-ui.min.js"
            ],
            "css": [
                "jquery\/jquery-ui.min.css",
                "contentCss.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery\/jquery.js",
            "eventScript.js"
        ],
        "persistent": false
    }
}