Codecademy Q&A Forum Fix

Fixes breadcrumbs in Codecademy Q&A Forums.

What is Codecademy Q&A Forum Fix?

Codecademy Q&A Forum Fix is a Chrome extension developed by JoahG, and its main feature is "Fixes breadcrumbs in Codecademy Q&A Forums.".

Extension Screenshots

screenshot

Download Codecademy Q&A Forum Fix Extension CRX File

Download Codecademy Q&A Forum Fix 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

                        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                    

Extension Basic Information

Name Codecademy Q&A Forum Fix Codecademy Q&A Forum Fix
ID pbihfimpapchgicgkkimmhiikinpipbb
Official URL https://chromewebstore.google.com/detail/codecademy-qa-forum-fix/pbihfimpapchgicgkkimmhiikinpipbb
Description Fixes breadcrumbs in Codecademy Q&A Forums.
File Size 213 KB
Installation Count 16
Current Version 1.0.3
Last Updated 2013-10-23
Publish Date 2013-10-22
Rating 5.00/5 Total 1 Ratings
Developer JoahG
Payment Type free
Extension Website https://github.com/JoahG/cc-forumfix_chrome-extension
Supported Languages 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\/*"
            ]
        }
    ]
}