Pass the Plebs

Adds Polyratings (and much more) to PASS!

Pass the Plebsคืออะไร?

Pass the Plebs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tim Stoddard และคุณลักษณะหลักของมันคือ "Adds Polyratings (and much more) to PASS!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This tool adds many useful features, such as Polyratings integration, to PASS. It was created with the goal of simplifying the (stressful) registration process for Cal Poly students.

Features:
- Polyrating and number of evaluations appear next to the instructor's name (if they exist)
- Background behind the instructor's name changes color corresponding to their rating
- Click on any teacher's name to see their full Polyratings page (if it exists)
- Search Polyratings for teachers and classes from the Chrome search bar (keyword is 'rating')
- Options to gray out or hide classes that are closed, cancelled, conflict with your schedule, or have STAFF listed as the instructor
- Checkbox at the top of each class list to select/unselect all classes at once
- Click on any section header to toggle showing/hiding the course description
- Errors list is now part of the sidebar instead of on top of the class listings

For those interested, source can be found here: https://github.com/timstoddard/PassThePlebs                    

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

ชื่อ Pass the Plebs Pass the Plebs
ID mhglgbabaleaegjhdcmfffkaaklpmjog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pass-the-plebs/mhglgbabaleaegjhdcmfffkaaklpmjog
คำอธิบาย Adds Polyratings (and much more) to PASS!
ขนาดไฟล์ 123 KB
จำนวนการติดตั้ง 1,951
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2020-02-04
วันที่เผยแพร่ 2020-02-04
คะแนน 5.00/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Tim Stoddard
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pass the Plebs",
    "short_name": "Pass the Plebs",
    "version": "1.2.0",
    "version_name": "1.2.0",
    "description": "Adds Polyratings (and much more) to PASS!",
    "omnibox": {
        "keyword": "rating"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Tim Stoddard",
    "background": {
        "persistent": true,
        "scripts": [
            "bundle\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pass.calpoly.edu\/*"
            ],
            "js": [
                "bundle\/index.js"
            ],
            "css": [
                "bundle\/index.css"
            ]
        }
    ],
    "incognito": "split",
    "options_page": "options\/index.html",
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "http:\/\/polyratings.com\/",
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}