Skip to content

Instantly share code, notes, and snippets.

@nazoking
Created July 18, 2014 07:14
Show Gist options
  • Save nazoking/90696699c34269d82958 to your computer and use it in GitHub Desktop.
Save nazoking/90696699c34269d82958 to your computer and use it in GitHub Desktop.
githubとgitbucketで使えるLGTMブックマークレット
javascript:(function () {
jQuery.getJSON("http://www.lgtm.in/g", function (data) {
var oldMessage = jQuery("textarea[name=\"comment[body]\"],#content").val();
var msg = data.markdown;
jQuery("textarea[name=\"comment[body]\"],#content").val(oldMessage + "" + msg);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment