exthouse icon indicating copy to clipboard operation
exthouse copied to clipboard

custom login script

Open alekseykulikov opened this issue 6 years ago • 0 comments

Add support for custom login script to evaluate extensions requiring authentication (more than 50% of all extensions).

Solution

Puppeteer powers Exthouse and allows us to get an extension page. A custom script could do some extra steps to finish the authentication and extension install.

Possible API

login.js

exports.handler = async (extension, page) => {
  // perform steps for login
}

Use the login script:

exthouse my-ext.crx --require=login.js

alekseykulikov avatar Jun 17 '19 13:06 alekseykulikov