ExampleCheck

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

ExampleCheck क्या है?

ExampleCheck Tianyi Zhang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that augments Stack Overflow with API usage patterns mined from GitHub"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ExampleCheck एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*"
    ]
}