Skip to content

Instantly share code, notes, and snippets.

@scottpdawson
Last active October 7, 2017 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottpdawson/b99564ebfefc01a831b36ab601148a90 to your computer and use it in GitHub Desktop.
Save scottpdawson/b99564ebfefc01a831b36ab601148a90 to your computer and use it in GitHub Desktop.
When Crowdfire updated their service to show a checkmark after you've taken action on a profile instead of just hiding the profile, they ruined the usability of their service. If you paste this in your browser console on each page load, it reverts the functionality back to what it was before. Is there a way to have this load automatically?
$(document).on("click", function() {
$(".js-done-button:visible").closest(".row").hide();
});
@scottpdawson
Copy link
Author

You can make a bookmarklet in Chrome to click once on page load. The bookmark content that I tested:

javascript:(function(){$(document).on("click",function(){$(".js-done-button:visible").closest(".row").hide()});})();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment