Skip to content

Instantly share code, notes, and snippets.

@threetreeslight
Last active September 15, 2018 12:34
Show Gist options
  • Save threetreeslight/418759f983bf7521d3b257a248aebab6 to your computer and use it in GitHub Desktop.
Save threetreeslight/418759f983bf7521d3b257a248aebab6 to your computer and use it in GitHub Desktop.
connpass setting : ignore media update notification
// ignore media update notification
//
// access https://connpass.com/settings/ and run it on console
//
var els = document.getElementsByClassName('GroupNotifySettingsList');
Array.from(els).forEach( (e) => {
console.log(e);
e.style.display = 'block';
e.getElementsByTagName('li')[0].getElementsByTagName('input')[0].checked = true;
e.getElementsByTagName('li')[1].getElementsByTagName('input')[0].checked = true;
e.getElementsByTagName('li')[2].getElementsByTagName('input')[0].checked = false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment