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」です。
拡張機能のスクリーンショット
ExampleCheck拡張機能のCRXファイルをダウンロード
ExampleCheck拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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:\/\/*\/*" ] } |