Codecademy Redesigned
New feature
Qu'est-ce que Codecademy Redesigned ?
Codecademy Redesigned est une extension Chrome développée par Alex Craig, et sa fonction principale est "New feature".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Codecademy Redesigned
Téléchargez les fichiers d'extension Codecademy Redesigned au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 :)
Informations de Base sur l'Extension
Nom | Codecademy Redesigned |
ID | bladgjamjaiaffkojoadgeelkgfgkdkp |
URL Officiel | https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp |
Description | New feature |
Taille du Fichier | 15.91 KB |
Nombre d'Installations | 281 |
Version Actuelle | 7.1.3 |
Dernière Mise à Jour | 2016-02-17 |
Date de Publication | 2016-02-17 |
Évaluation | 4.30/5 Total 10 Évaluations |
Développeur | Alex Craig |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://zystvan.com/codecademy-redesigned/ |
Langues Prises en Charge | 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" ] } ] } |