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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}