Codecademy Redesigned

New feature

Codecademy Redesigned là gì?

Codecademy Redesigned là một tiện ích mở rộng Chrome được phát triển bởi Alex Craig, và tính năng chính của nó là "New feature".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Codecademy Redesigned

Tải xuống các tệp mở rộng Codecademy Redesigned dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Codecademy Redesigned Codecademy Redesigned
ID bladgjamjaiaffkojoadgeelkgfgkdkp
URL Chính Thức https://chromewebstore.google.com/detail/codecademy-redesigned/bladgjamjaiaffkojoadgeelkgfgkdkp
Mô tả New feature
Kích Thước Tệp 15.91 KB
Số Lần Cài Đặt 281
Phiên Bản Hiện Tại 7.1.3
Cập Nhật Lần Cuối 2016-02-17
Ngày Phát Hành 2016-02-17
Đánh Giá 4.30/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Alex Craig
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://zystvan.com/codecademy-redesigned/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}