Codecademy Q&A Forum Fix
Fixes breadcrumbs in Codecademy Q&A Forums.
Cos'è Codecademy Q&A Forum Fix?
Codecademy Q&A Forum Fix è un'estensione di Chrome sviluppata da JoahG, e la sua funzione principale è "Fixes breadcrumbs in Codecademy Q&A Forums.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codecademy Q&A Forum Fix
Scarica i file di estensione Codecademy Q&A Forum Fix 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
Fixes the buggy Codecademy Q&A Forums, which lack correct indication of the current Q&A section and exercise being viewed. Might not work when Q&A questions are loaded via AJAX, in this case, simply refresh the Q&A question page view and it should be fixed. Update 1.0.1: New icon Update 1.0.2: Added GitHub repo Update 1.0.3: Bug Fixes
Informazioni di Base sull'Estensione
Nome | Codecademy Q&A Forum Fix |
ID | pbihfimpapchgicgkkimmhiikinpipbb |
URL Ufficiale | https://chromewebstore.google.com/detail/codecademy-qa-forum-fix/pbihfimpapchgicgkkimmhiikinpipbb |
Descrizione | Fixes breadcrumbs in Codecademy Q&A Forums. |
Dimensione del File | 213 KB |
Conteggio Installazioni | 16 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2013-10-23 |
Data di Pubblicazione | 2013-10-22 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | JoahG |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/JoahG/cc-forumfix_chrome-extension |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codecademy Q&A Forum Fix", "description": "Fixes breadcrumbs in Codecademy Q&A Forums.", "version": "1.0.3", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "http:\/\/codecademy.com\/" ], "content_scripts": [ { "all_frames": true, "js": [ "jquery.min.js", "magic.js" ], "matches": [ "http:\/\/www.codecademy.com\/*", "https:\/\/www.codecademy.com\/*" ] } ] } |