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
官方網址 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\/*"
            ]
        }
    ]
}