Codecademy Redesigned

New feature

Cos'è Codecademy Redesigned?

Codecademy Redesigned è un'estensione di Chrome sviluppata da Alex Craig, e la sua funzione principale è "New feature".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Codecademy Redesigned

Scarica i file di estensione Codecademy Redesigned in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 :)                    

Informazioni di Base sull'Estensione

Nome Codecademy Redesigned Codecademy Redesigned
ID bladgjamjaiaffkojoadgeelkgfgkdkp
URL Ufficiale https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp
Descrizione New feature
Dimensione del File 15.91 KB
Conteggio Installazioni 281
Versione Corrente 7.1.3
Ultimo Aggiornamento 2016-02-17
Data di Pubblicazione 2016-02-17
Valutazione 4.30/5 Totale 10 Valutazioni
Sviluppatore Alex Craig
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://zystvan.com/codecademy-redesigned/
Lingue Supportate 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"
            ]
        }
    ]
}