Castle Crowd

Crowd sourced Castle Learning answers

Castle Crowd란 무엇입니까?

Castle Crowd은(는) b3zman41에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Crowd sourced Castle Learning answers"입니다.

확장 프로그램 스크린샷

screenshot

Castle Crowd 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TL;DR : If someone else has answered a question on castle learning, you will be able to get that answer.

Other people answer, sends to my server, you pull that answer if it exists on server.                    

확장 프로그램 기본 정보

이름 Castle Crowd Castle Crowd
ID emgljeihdnlgmdaldbhdpggbdogdjbdh
공식 URL https://chromewebstore.google.com/detail/castle-crowd/emgljeihdnlgmdaldbhdpggbdogdjbdh
설명 Crowd sourced Castle Learning answers
파일 크기 146 KB
설치 횟수 320
현재 버전 0.0.5
최근 업데이트 2016-02-14
출시 날짜 2016-02-14
평점 2.38/5 총 13 개의 평점
개발자 b3zman41
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Castle Crowd",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Crowd sourced Castle Learning answers",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.castlelearning.com\/Review\/CLO\/Student\/Assignment\/Questions*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/inject\/inject.html"
    ],
    "background": {
        "scripts": [
            "js\/jquery\/jquery.min.js",
            "background\/background.js"
        ],
        "persistent": false
    }
}