CityU FCC Extension
The extension that can help using FCC more effectively.
Cos'è CityU FCC Extension?
CityU FCC Extension è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "The extension that can help using FCC more effectively.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CityU FCC Extension
Scarica i file di estensione CityU FCC Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension aims to help students to use the Free Code Camp more effectively.
Informazioni di Base sull'Estensione
Nome | CityU FCC Extension |
ID | padapffebpejcbhcognimnjfbfofgmjm |
URL Ufficiale | https://chromewebstore.google.com/detail/cityu-fcc-extension/padapffebpejcbhcognimnjfbfofgmjm |
Descrizione | The extension that can help using FCC more effectively. |
Dimensione del File | 105 KB |
Conteggio Installazioni | 29 |
Versione Corrente | 0.7 |
Ultimo Aggiornamento | 2019-09-18 |
Data di Pubblicazione | 2019-09-18 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/PengWang0316/CityUFCCExtension |
URL della Pagina di Aiuto | https://github.com/PengWang0316/CityUFCCExtension |
Lingue Supportate | 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" } |