Codecademy Redesigned
New feature
Was ist Codecademy Redesigned?
Codecademy Redesigned ist eine Chrome-Erweiterung, die von Alex Craig entwickelt wurde, und ihr Hauptmerkmal ist "New feature".
Erweiterungsscreenshots
Codecademy Redesigned-Erweiterungs-CRX-Datei herunterladen
Laden Sie Codecademy Redesigned-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
This extension combines several previous extensions and completely revolutionizes your experience on Codecademy. - Adds a new Canned Responses feature into the forums for people who type the same thing a lot - Redesigns the Forums to have darker colors with more contrast, to strain the eye less - Adds a link in the footer to a GitHub repository containing old posts saved from Groups, including many useful tutorials. - Makes the notification bell link to your [Discuss][1] notifications, instead of the old notifications page - Updates the Profile Page, adding 'points today', 'best points day', and best day streak' back into the profile. Enjoy the improvements, we plan on adding many more :)
Grundlegende Informationen zur Erweiterung
Name | Codecademy Redesigned |
ID | bladgjamjaiaffkojoadgeelkgfgkdkp |
Offizielle URL | https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp |
Beschreibung | New feature |
Dateigröße | 15.91 KB |
Installationsanzahl | 281 |
Aktuelle Version | 7.1.3 |
Letztes Update | 2016-02-17 |
Veröffentlichungsdatum | 2016-02-17 |
Bewertung | 4.30/5 Insgesamt 10 Bewertungen |
Entwickler | Alex Craig |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://zystvan.com/codecademy-redesigned/ |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codecademy Redesigned", "description": "New feature", "version": "7.1.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [], "content_scripts": [ { "run_at": "document_end", "all_frames": true, "js": [ "essentials.js", "siteUpdater.js" ], "css": [ "siteUpdater.css" ], "matches": [ "*:\/\/codecademy.com\/*", "*:\/\/www.codecademy.com\/*" ] }, { "run_at": "document_end", "all_frames": true, "js": [ "essentials.js", "forumUpdater.js" ], "css": [ "forumUpdater.css" ], "matches": [ "*:\/\/discuss.codecademy.com\/*" ] }, { "run_at": "document_end", "all_frames": true, "js": [ "admin.js" ], "matches": [ "*:\/\/discuss.codecademy.com\/admin" ] } ] } |