hermione-hide-scrollbars

Plugin to hide scrollbars

Usage no npm install needed!

<script type="module">
  import hermioneHideScrollbars from 'https://cdn.skypack.dev/hermione-hide-scrollbars';
</script>

README

hermione-hide-scrollbars

Plugin for hermione which hides scrollbars in Chrome browsers. Uses puppeteer-core inside. More info about hermione plugins in hermione.

Installation

$ npm install --save hermione-hide-scrollbars

Configuration

In hermione config:

module.exports = {
    // ...

    plugins: {
        'hermione-hide-scrollbars': {
            enabled: true,
            browsers: ['chrome'],
            browserWSEndpoint: ({sessionId, gridUrl}) => `ws://${url.parse(gridUrl).host}/devtools/${sessionId}`
        }
    },

    // ...
};