ExampleCheck

A Chrome extension that augments Stack Overflow with API usage patterns mined from GitHub

ExampleCheck란 무엇입니까?

ExampleCheck은(는) Tianyi Zhang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that augments Stack Overflow with API usage patterns mined from GitHub"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        ExampleCheck proactively detects API usage violations in a Stack Overflow post and alerts users about potential API misuse. Currently, ExampleCheck includes hundreds of API usage patterns of 100 Java API methods learned from 380K GitHub repositories. These patterns capture the temporal ordering, guard conditions, and exception handling logic of API methods. We believe commonly practiced idioms in massive code corpora may represent a desirable pattern that a programmer can use to trust and enhance code examples on Stack Overflow.                    

확장 프로그램 기본 정보

이름 ExampleCheck ExampleCheck
ID amliempebckaiaklimcpopomlnklkioe
공식 URL https://chromewebstore.google.com/detail/examplecheck/amliempebckaiaklimcpopomlnklkioe
설명 A Chrome extension that augments Stack Overflow with API usage patterns mined from GitHub
파일 크기 648 KB
설치 횟수 38
현재 버전 2.7
최근 업데이트 2018-11-16
출시 날짜 2018-11-16
개발자 Tianyi Zhang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://web.cs.ucla.edu/~tianyi.zhang/examplecheck.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ExampleCheck",
    "description": "A Chrome extension that augments Stack Overflow with API usage patterns mined from GitHub",
    "icons": {
        "128": "images\/icon-128.png",
        "512": "images\/icon-512.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon-128.png",
        "default_title": "ExampleCheck"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "version": "2.7",
    "manifest_version": 2,
    "web_accessible_resources": [
        "jquery.min.js",
        "waypoints.min.js",
        "images\/thumb-up.png",
        "images\/thumb-down.png",
        "images\/upvote.svg",
        "images\/upvote2.svg",
        "images\/downvote.svg",
        "images\/downvote2.svg",
        "\/images\/icon-128.png",
        "\/images\/icon-512.png",
        "ProximaNovaRegular.otf"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ],
            "css": [
                "bootstrap.min.css",
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "waypoints.min.js",
                "bootstrap.min.js",
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "http:\/\/localhost\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}