Codecademy Redesigned

New feature

Что такое Codecademy Redesigned?

Codecademy Redesigned - это расширение Chrome, разработанное Alex Craig, и его основная функция - "New feature".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Codecademy Redesigned

Скачайте файлы расширений Codecademy Redesigned в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Codecademy Redesigned Codecademy Redesigned
ID bladgjamjaiaffkojoadgeelkgfgkdkp
Официальный URL https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp
Описание New feature
Размер файла 15.91 KB
Количество установок 281
Текущая Версия 7.1.3
Последнее Обновление 2016-02-17
Дата публикации 2016-02-17
Рейтинг 4.30/5 Всего 10 оценок
Разработчик Alex Craig
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://zystvan.com/codecademy-redesigned/
Поддерживаемые языки 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"
            ]
        }
    ]
}