Skip to content

Instantly share code, notes, and snippets.

View captchadex's full-sized avatar

Ryan Lee captchadex

  • Zero
  • San Francisco Bay Area
  • 09:54 (UTC -08:00)
  • LinkedIn in/iamryanlee
View GitHub Profile
@captchadex
captchadex / google-passwords-delete.js
Created June 14, 2020 21:44
Google Chrome password deleter
// Run this in chrome://settings/passwords
// Works as of Chrome 83
const page = document.querySelector('settings-ui')
.shadowRoot.querySelector('settings-main')
.shadowRoot.querySelector('settings-basic-page')
.shadowRoot.querySelector('settings-autofill-page')
.shadowRoot.querySelector('passwords-section')
.shadowRoot
class Slideshow extends React.Component {
state = {
current: 0
}
prevImage = () => {
const { images } = this.props
const { current } = this.state
if (current === 0) {