Codecademy Redesigned
New feature
Codecademy Redesignedคืออะไร?
Codecademy Redesigned เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Craig และคุณลักษณะหลักของมันคือ "New feature"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codecademy Redesigned
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |