Socket
Socket
Sign inDemoInstall

adblock-plus-crx

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    adblock-plus-crx

Adblock-Plus crx base64 encoded binary for chromedriver


Version published
Weekly downloads
33
decreased by-5.71%
Maintainers
1
Install size
541 kB
Created
Weekly downloads
 

Readme

Source

Adblock-Plus.crx

Adverts can slow and even break functional tests. If you run your functional tests using ChromeDriver you can install extensions like AdBlock-Plus as follows...

{
  ...
  "desiredCapabilities": {
    "javascriptEnabled": true,
    "acceptSslCerts": true,
    "browserName": "chrome",
    "chromeOptions": {
      "args": [ "no-sandbox" ],
      "extensions": [ "Q3Iy....AAAA=" ]
    }
  }
  ...
}

Where Q3Iy....AAAA= is the base64 encoded crx file you want to install. Unfortunately Adblock-Plus is around 600KB when encoded and not something you really want to include in a json file.

When using the excellent Nightwatch.js you can define configuration in nightwatch.conf.js instead of json.

var adBlockPlus = require('adblock-plus-crx')

module.exports = {
  ...
  "desiredCapabilities": {
    "javascriptEnabled": true,
    "acceptSslCerts": true,
    "browserName": "chrome",
    "chromeOptions": {
      "args": [ "no-sandbox" ],
      "extensions": [ adBlockPlus.base64() ]
    }
  }
  ...
}

Modifications

AdBlock-Plus opens a new tab on first run and since WebDriver tests typically start with a fresh profile each run gets more than a little annoying. We've disabled first run behaviour by setting suppress_first_run_page to true and recreating the crx.

Using a custom crx (instructions for OSX)

  1. Fork this project
  2. Rename the package
  3. Update the adblock-plus-crx version in package.json
  4. Add modifications to ./scripts/update.sh
  5. Run ./scripts/update.sh from forks root directory - i.e. the one containing package.json
  6. Commit your changes and publish to npm or a private repo.

Pull Requests

If you don't want to publish an alternative version of this package, I will consider pull requests for adblock-plus version updates and generally useful modifications, however the later should be done by amending ./scripts/update.sh. I cannot accept changes to the crx file itself.

Keywords

FAQs

Last updated on 29 Sep 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc