Codecademy Redesigned
New feature
Wat is Codecademy Redesigned?
Codecademy Redesigned is een Chrome-extensie ontwikkeld door Alex Craig, en de belangrijkste functie is "New feature".
Extensie Screenshots
Download het CRX-bestand van de extensie Codecademy Redesigned
Download Codecademy Redesigned-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :) Basisinformatie over de Extensie
| Naam | |
| ID | bladgjamjaiaffkojoadgeelkgfgkdkp |
| Officiële URL | https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp |
| Beschrijving | New feature |
| Bestandsgrootte | 15.91 KB |
| Aantal Installaties | 281 |
| Huidige Versie | 7.1.3 |
| Laatst Bijgewerkt | 2016-02-17 |
| Publicatiedatum | 2016-02-17 |
| Beoordeling | 4.30/5 Totaal 10 Beoordelingen |
| Ontwikkelaar | Alex Craig |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://zystvan.com/codecademy-redesigned/ |
| Ondersteunde Talen | 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"
]
}
]
} | |