Codecademy Q&A Forum Fix

Fixes breadcrumbs in Codecademy Q&A Forums.

什么是Codecademy Q&A Forum Fix?

Codecademy Q&A Forum Fix是由JoahG开发的Chrome扩展程序,该扩展的主要功能是“Fixes breadcrumbs in Codecademy Q&A Forums.”。

扩展截图

screenshot

下载Codecademy Q&A Forum Fix扩展crx文件

下载Codecademy Q&A Forum Fix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Codecademy Q&A Forum Fix Codecademy Q&A Forum Fix
ID pbihfimpapchgicgkkimmhiikinpipbb
官方URL https://chromewebstore.google.com/detail/codecademy-qa-forum-fix/pbihfimpapchgicgkkimmhiikinpipbb
简介 Fixes breadcrumbs in Codecademy Q&A Forums.
文件大小 213 KB
安装次数 16
当前版本 1.0.3
更新时间 2013-10-23
上架时间 2013-10-22
评分 5.00/5 共1次评分
开发者 JoahG
付费类型 free
扩展官网 https://github.com/JoahG/cc-forumfix_chrome-extension
支持的语言 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\/*"
            ]
        }
    ]
}