Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/browser-automation/cba
Chromium Browser Automation (extension for chrome browser automation).
https://github.com/browser-automation/cba
automation chrome-automation webextension
Last synced: 3 months ago
JSON representation
Chromium Browser Automation (extension for chrome browser automation).
- Host: GitHub
- URL: https://github.com/browser-automation/cba
- Owner: browser-automation
- License: gpl-3.0
- Created: 2019-05-08T05:50:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T09:09:38.000Z (5 months ago)
- Last Synced: 2024-06-28T13:33:43.076Z (5 months ago)
- Topics: automation, chrome-automation, webextension
- Language: JavaScript
- Homepage: https://chrome-automation.com
- Size: 538 KB
- Stars: 100
- Watchers: 7
- Forks: 15
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chromium browser automation
Browser extension for automating chromium browser with more than **43 000**
weekly users and **250 000** downloads.- Stable version: https://chrome.google.com/webstore/detail/chromium-browser-automati/jmbmjnojfkcohdpkpjmeeijckfbebbon
- Website: https://chrome-automation.com
- Documentation: https://chrome-automation.com/documentation
- Tutorials: https://chrome-automation.com/tutorialCheck out [the blog post about rewriting
CBA](https://manvel.me/projects/cba/rewriting), to learn more about why CBA was
created, what is new and what are our future plans for the project.
## Installation```bash
npm install
```### Setting up development environment
- Run one of the commands below
```bash
npm run build:webpack # builds extension in `dist` directory
npm run build:webpack:watch # builds extension and watches for changes
build:webpack:prod # builds production version with minified files
```
- Visit `chrome://extensions` in your browser
- Ensure that the **Developer mode** checkbox in the top right-hand corner is
checked
- Click **Load unpacked** button
- Locate and load generated `dist` folder in the repository root directory**Note:** When rebuilding the extension changes in background scripts might not
be loaded in the chrome unless actual extension is reloaded in the
`chrome://extensions` page (i.e. By clicking on the reload button).## Testing
```bash
npm test # Run puppeteer test
npm run test:pages # Starts server with test page used by puppeteer
npm run lint # Run linter
```## Publishing
Command below bundles the extension into `cba.zip` file:
```bash
npm run build
```## Wiki
https://github.com/browser-automation/cba/wiki
## Installing CBA 8.3.7
After release of `9.0.0` several users reported CBA being broken, that is most
probably because of the [current
issue](https://github.com/browser-automation/cba/issues/85). Until the mentioned
issue is fixed you can downgrade to the old version of CBA [by following current
steps](https://github.com/browser-automation/cba/wiki/Installing-CBA-8.3.7).## Contribution
### Reporting bugs, suggestions and questions
Use [Github issue tracker](https://github.com/browser-automation/cba/issues) for
requesting features, reporting bugs and questions. See [github issues
documentation](https://guides.github.com/features/issues/).### Code contribution
Code contributions are welcome, you can always consult with me (in issues, or
PRs) when you have a question. If you are developing a new feature, please
consider creating also tests for them when possible.### Website changes
Please refer to the [website
repository](https://github.com/browser-automation/cba-website) for contributions
referring to the [chrome-automation.com](https://chrome-automation.com/)
content, layout and/or styles.### Thanks to the awesome contributors
- [@naarrek](https://github.com/naarrek)
- For migrating [chrome-automation.com](https://chrome-automation.com) from Drupal
instance to [CMintS](https://cmints.io/) and implementing all necessary changes
for that.
- For helping with testing Beta version of CBA.