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 |
官方網址 | 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" ] } ] } |