Questify
Converts the World Wide Web into the UW Quest student info system.
Was ist Questify?
Questify ist eine Chrome-Erweiterung, die von Disruptive Innovation by Simon Tang entwickelt wurde, und ihr Hauptmerkmal ist "Converts the World Wide Web into the UW Quest student info system.".
Erweiterungsscreenshots
Questify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Questify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Questify |
ID | ejagagmfgfepadmjfkmaklfkjdopiklo |
Offizielle URL | https://chromewebstore.google.com/detail/questify/ejagagmfgfepadmjfkmaklfkjdopiklo |
Beschreibung | Converts the World Wide Web into the UW Quest student info system. |
Dateigröße | 21.93 KB |
Installationsanzahl | 19 |
Aktuelle Version | 0.0.7 Disruptive Beta |
Letztes Update | 2017-11-27 |
Veröffentlichungsdatum | 2017-11-26 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Disruptive Innovation by Simon Tang |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |