RateMyTrojans
Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
ما هو RateMyTrojans؟
RateMyTrojans هو إضافة Chrome تم تطويرها بواسطة Kyle Chua، والميزة الرئيسية لها هي "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة RateMyTrojans
قم بتنزيل ملفات الامتداد RateMyTrojans بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
View the source code: https://github.com/kylechua/rmpLinks-USC
معلومات أساسية عن التمديد
الاسم | RateMyTrojans |
ID | kmhmknbhcdgedenadphgnpaelgabimmi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi |
الوصف | Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website. |
حجم الملف | 435 KB |
عدد التثبيتات | 192 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2018-08-08 |
تاريخ النشر | 2018-07-09 |
المطور | Kyle Chua |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/kylechua/rmpLinks-USC |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RateMyTrojans", "description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.", "version": "1.0.2", "background": { "scripts": [ "jquery-3.2.1.min.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/webreg.usc.edu\/*" ], "js": [ "jquery-3.2.1.min.js", "findProfs.js" ] } ], "web_accessible_resources": [ "img\/*.png" ], "permissions": [ "https:\/\/www.ratemyprofessors.com\/*" ] } |