CityU FCC Extension
The extension that can help using FCC more effectively.
什么是CityU FCC Extension?
CityU FCC Extension是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“The extension that can help using FCC more effectively.”。
扩展截图
下载CityU FCC Extension扩展crx文件
下载CityU FCC Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension aims to help students to use the Free Code Camp more effectively.
扩展基本信息
名称 | CityU FCC Extension |
ID | padapffebpejcbhcognimnjfbfofgmjm |
官方URL | https://chromewebstore.google.com/detail/cityu-fcc-extension/padapffebpejcbhcognimnjfbfofgmjm |
简介 | The extension that can help using FCC more effectively. |
文件大小 | 105 KB |
安装次数 | 29 |
当前版本 | 0.7 |
更新时间 | 2019-09-18 |
上架时间 | 2019-09-18 |
评分 | 5.00/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/PengWang0316/CityUFCCExtension |
帮助页面URL | https://github.com/PengWang0316/CityUFCCExtension |
支持的语言 | 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" } |