Skip to content
This repository has been archived by the owner on Nov 30, 2019. It is now read-only.

A Google Chrome extension for github users to add LGTM comments on commits with a configurable shortcut.

Notifications You must be signed in to change notification settings

raxityo/lgtm-chrome-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a chrome extension which facilitates to add a configurable LGTM comment to github commits with a configurable keyboard shortcut.

Bookmarklet

Don't want to install a chrome extension? Use this bookmarklet:

javascript:(function()%7Bvar%20a%3D%24(%22.js-new-comment-form%22)%3Ba.find(%22textarea%22).val(%22LGTM.%20%3A%2B1%3A%22)%3Ba.submit()%3B%7D)()

Which essentially does following:

var commentForm = $(".js-new-comment-form");
commentForm.find("textarea").val("LGTM.");
commentForm.submit();

TODO

  • Clean up JavaScript.
  • Integrate lgtm.in.
  • Implement this extension for Firefox. Why not?

Pull requests & feature requests are most welcomed.

About

A Google Chrome extension for github users to add LGTM comments on commits with a configurable shortcut.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published