PARQR

Piazza Automated Related Question Recommender. PARQR recommends similar posts on Piazza to save you time!

PARQR란 무엇입니까?

PARQR은(는) https://www.parqr.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Piazza Automated Related Question Recommender. PARQR recommends similar posts on Piazza to save you time!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        PARQR is a tool designed for improving the student experience on Piazza and saving time for instructors when managing large online courses. It does this by providing recommendations to similar posts to users when they are asking a question in real time. Also, PARQR contains an instructor dashboard which allows TA's to collaborate and track unanswered posts for large online courses in Piazza.

Please contact the PARQR team at [email protected] to get PARQR in your course.                    

확장 프로그램 기본 정보

이름 PARQR PARQR
ID ghpadgbcphnomjfjjpockklhcgahebji
공식 URL https://chromewebstore.google.com/detail/parqr/ghpadgbcphnomjfjjpockklhcgahebji
설명 Piazza Automated Related Question Recommender. PARQR recommends similar posts on Piazza to save you time!
파일 크기 2.25 MB
설치 횟수 817
현재 버전 2.0.5
최근 업데이트 2020-11-12
출시 날짜 2020-06-03
평점 5.00/5 총 2 개의 평점
개발자 https://www.parqr.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.parqr.io
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PARQR",
    "description": "Piazza Automated Related Question Recommender. PARQR recommends similar posts on Piazza to save you time!",
    "version": "2.0.5",
    "browser_action": {
        "default_icon": {
            "19": "media\/parqr.png",
            "128": "media\/parqr_128x128.png",
            "512": "media\/parqr_512x512.png"
        },
        "default_popup": "parqr.html"
    },
    "icons": {
        "16": "media\/parqr_16x16.png",
        "128": "media\/parqr_128x128.png",
        "256": "media\/parqr_256x256.png"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*.parqr.io\/*",
        "http:\/\/*.piazza.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/background.js",
            "src\/http-common.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.piazza.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/chartist.min.js",
                "js\/datatables.js",
                "js\/Plugin\/order.neutral().js",
                "js\/md5.min.js",
                "src\/parqrLib.js",
                "src\/homescreenSuggestions.js",
                "src\/searchSuggestions.js",
                "src\/dashboard.js",
                "src\/instructorDashboard.js",
                "src\/observer.js"
            ],
            "css": [
                "css\/bootstrap-scope.css",
                "css\/buttons.css",
                "css\/dashboard.css",
                "css\/datatables.css",
                "css\/fonts.css",
                "css\/homescreen.css",
                "css\/homescreenSuggestions.css",
                "css\/instructorDashboard.css",
                "css\/parqr.css",
                "css\/searchSuggestion.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "media\/*",
        "fonts\/*"
    ]
}