Codecademy Redesigned

New feature

Codecademy Redesigned란 무엇입니까?

Codecademy Redesigned은(는) Alex Craig에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "New feature"입니다.

확장 프로그램 스크린샷

screenshot

Codecademy Redesigned 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}