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 :) 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |