CityU FCC Extension
The extension that can help using FCC more effectively.
What is CityU FCC Extension?
CityU FCC Extension is a Chrome extension developed by Unknown, and its main feature is "The extension that can help using FCC more effectively.".
Extension Screenshots
Download CityU FCC Extension Extension CRX File
Download CityU FCC Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension aims to help students to use the Free Code Camp more effectively.
Extension Basic Information
Name | CityU FCC Extension |
ID | padapffebpejcbhcognimnjfbfofgmjm |
Official URL | https://chromewebstore.google.com/detail/cityu-fcc-extension/padapffebpejcbhcognimnjfbfofgmjm |
Description | The extension that can help using FCC more effectively. |
File Size | 105 KB |
Installation Count | 29 |
Current Version | 0.7 |
Last Updated | 2019-09-18 |
Publish Date | 2019-09-18 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/PengWang0316/CityUFCCExtension |
Help Page URL | https://github.com/PengWang0316/CityUFCCExtension |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CityU FCC Extension", "version": "0.7", "description": "The extension that can help using FCC more effectively.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/learn.freecodecamp.org\/*" ], "js": [ ".\/build\/content.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": ".\/build\/popup.html", "default_title": "CityU Apprenti Program" }, "permissions": [ "storage", "tabs", "https:\/\/raw.githubusercontent.com\/PengWang0316\/CityUFCCExtension\/master\/CourseData.json" ], "homepage_url": "https:\/\/github.com\/PengWang0316\/CityUFCCExtension" } |