PennCourseNotify Extension
Add PennCourseNotify buttons to PennInTouch
What is PennCourseNotify Extension?
PennCourseNotify Extension is a Chrome extension developed by https://www.penncoursenotify.com, and its main feature is "Add PennCourseNotify buttons to PennInTouch".
Extension Screenshots
Download PennCourseNotify Extension Extension CRX File
Download PennCourseNotify Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
PennCourseNotify.com allows students at the University of Pennsylvania easily receive email notification whenever a closed course opens up. Now with this extension, you can browse PennInTouch and easily click the "Notify Me!" button beside the "Add to cart" and be added to PennCourseNotify. Easily get into the courses you need with PennCourseNotify! Created by Fabio Fleitas
Extension Basic Information
Name | |
ID | fnfnjichadfpaneolghomamdbjbhnenn |
Official URL | https://chromewebstore.google.com/detail/penncoursenotify-extensio/fnfnjichadfpaneolghomamdbjbhnenn |
Description | Add PennCourseNotify buttons to PennInTouch |
File Size | 146 KB |
Installation Count | 125 |
Current Version | 1.0 |
Last Updated | 2014-01-22 |
Publish Date | 2014-01-21 |
Rating | 4.50/5 Total 4 Ratings |
Developer | https://www.penncoursenotify.com |
Payment Type | free |
Extension Website | http://www.penncoursenotify.com/ |
Help Page URL | http://fabiofleitas.com/ |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PennCourseNotify Extension", "description": "Add PennCourseNotify buttons to PennInTouch", "version": "1.0", "author": "Fabio Fleitas", "icons": { "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "homepage_url": "http:\/\/www.penncoursenotify.com\/", "background": { "persistent": false, "scripts": [ "js\/install.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/pennintouch.apps.upenn.edu\/pennInTouch\/jsp\/fast2.do*" ], "js": [ "js\/jquery.min.js", "js\/script.js" ] } ], "web_accessible_resources": [ "js\/jquery-1.10.2.min.map" ], "permissions": [ "http:\/\/www.penncoursenotify.com\/", "storage" ] } |