Last active
September 15, 2018 12:34
-
-
Save threetreeslight/418759f983bf7521d3b257a248aebab6 to your computer and use it in GitHub Desktop.
connpass setting : ignore media update notification
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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