Codecademy Q&A Forum Fix

Fixes breadcrumbs in Codecademy Q&A Forums.

Wat is Codecademy Q&A Forum Fix?

Codecademy Q&A Forum Fix is een Chrome-extensie ontwikkeld door JoahG, en de belangrijkste functie is "Fixes breadcrumbs in Codecademy Q&A Forums.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Codecademy Q&A Forum Fix

Download Codecademy Q&A Forum Fix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Codecademy Q&A Forum Fix Codecademy Q&A Forum Fix
ID pbihfimpapchgicgkkimmhiikinpipbb
Officiële URL https://chromewebstore.google.com/detail/codecademy-qa-forum-fix/pbihfimpapchgicgkkimmhiikinpipbb
Beschrijving Fixes breadcrumbs in Codecademy Q&A Forums.
Bestandsgrootte 213 KB
Aantal Installaties 16
Huidige Versie 1.0.3
Laatst Bijgewerkt 2013-10-23
Publicatiedatum 2013-10-22
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar JoahG
Betalingswijze free
Extensiewebsite https://github.com/JoahG/cc-forumfix_chrome-extension
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}