Questify
Converts the World Wide Web into the UW Quest student info system.
What is Questify?
Questify is a Chrome extension developed by Disruptive Innovation by Simon Tang, and its main feature is "Converts the World Wide Web into the UW Quest student info system.".
Extension Screenshots
Download Questify Extension CRX File
Download Questify 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
Converts the World Wide Web into the UW Quest student info system. This allows anonymous web browsing during classes, since nobody wants to look at Quest. Created for TerribleHack X (http://terriblehack.website) at the University of Waterloo. 0.0.7 Disruptive Beta - Partial conversion for /r/uwaterloo.
Extension Basic Information
Name | Questify |
ID | ejagagmfgfepadmjfkmaklfkjdopiklo |
Official URL | https://chromewebstore.google.com/detail/questify/ejagagmfgfepadmjfkmaklfkjdopiklo |
Description | Converts the World Wide Web into the UW Quest student info system. |
File Size | 21.93 KB |
Installation Count | 19 |
Current Version | 0.0.7 Disruptive Beta |
Last Updated | 2017-11-27 |
Publish Date | 2017-11-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Disruptive Innovation by Simon Tang |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Questify", "version": "0.0.7", "version_name": "0.0.7 Disruptive Beta", "author": "Simon Tang", "manifest_version": 2, "description": "Converts the World Wide Web into the UW Quest student info system.", "permissions": [ "https:\/\/reddit.com\/r\/uwaterloo\/*" ], "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.reddit.com\/r\/uwaterloo\/*" ], "css": [ "src\/styles\/atoms\/variables.css", "src\/styles\/atoms\/widgets.css", "src\/styles\/atoms\/typography.css", "src\/styles\/organisms\/common.css", "src\/styles\/templates\/common.css" ], "js": [ "src\/scripts\/common\/common.js" ] }, { "matches": [ "https:\/\/*.reddit.com\/r\/uwaterloo\/*" ], "css": [ "src\/styles\/atoms\/reddit.css", "src\/styles\/molecules\/reddit_common.css", "src\/styles\/organisms\/reddit.css", "src\/styles\/templates\/reddit.css", "src\/styles\/pages\/reddit_common.css" ], "js": [ "src\/scripts\/reddit\/reddit_common.js" ] }, { "matches": [ "https:\/\/*.reddit.com\/r\/uwaterloo\/", "https:\/\/*.reddit.com\/r\/uwaterloo\/new\/*", "https:\/\/*.reddit.com\/r\/uwaterloo\/rising\/*", "https:\/\/*.reddit.com\/r\/uwaterloo\/controversial\/*", "https:\/\/*.reddit.com\/r\/uwaterloo\/top\/*", "https:\/\/*.reddit.com\/r\/uwaterloo\/gilded\/*" ], "css": [ "src\/styles\/pages\/reddit_front.css" ], "js": [ "src\/scripts\/reddit\/front.js" ] }, { "matches": [ "https:\/\/*.reddit.com\/r\/uwaterloo\/comments\/*" ], "css": [ "src\/styles\/pages\/reddit_comments.css" ], "js": [ "src\/scripts\/reddit\/comments.js" ] } ] } |