Codecademy Redesigned
New feature
什么是Codecademy Redesigned?
Codecademy Redesigned是由Alex Craig开发的Chrome扩展程序,该扩展的主要功能是“New feature”。
扩展截图
下载Codecademy Redesigned扩展crx文件
下载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 |
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" ] } ] } |