Open reveal-password in Script Kit

| ******* | cmd *| toto123 |

// Name: Reveal password
// Shortcut: cmd *
import "@johnlindquist/kit";
let js = `
document.activeElement.type = document.activeElement.type === 'password' ? 'text' : 'password';
`;
let value = await applescript(`
tell application "Google Chrome" to tell window 1
get execute active tab javascript "
${js}
"
end tell
`);

-- https://gist.github.com/abernier/582e1458195ec34268305298e4b3b86b