gitextract_ds0fadw8/ ├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── .vscode/ │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json ├── src/ │ ├── errors/ │ │ ├── IconError.js │ │ └── PresetError.js │ ├── generators/ │ │ ├── legacy.js │ │ └── tapable.js │ ├── helpers/ │ │ ├── except.js │ │ ├── fingerprint.js │ │ └── uri.js │ ├── icons/ │ │ └── index.js │ ├── index.js │ ├── injector/ │ │ └── index.js │ └── validators/ │ ├── colors.js │ ├── presets.js │ └── versioning.js └── tests/ ├── basic/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.5c6b192511a888bcb780.bundle.js │ └── manifest.b71cbf253213cc7cedb8b846c4e8ea0a.json ├── complex/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.a328bb93659dd721d1d6.bundle.js │ └── manifest.aa33c28d24e1121925cfa150e2ec52a9.json ├── fingerprints-false/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.bundle.js │ └── manifest.json ├── index.html ├── index.js ├── issue-84/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.159ccf53b959ede39a2e.bundle.js │ └── manifest.81200e1d24c270411245b5a63a4b91e7.json ├── issue-87/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.2f76de9afb439f1fcb16.bundle.js │ └── manifest.24abfacd4846fab249f8fe94967260b9.json ├── rgb-background/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.fcb65b68a23c92e495a7.bundle.js │ └── manifest.836308dd4105e7779e96d575bbcb3984.json ├── rgba-background/ │ ├── .gitignore │ ├── app.js │ ├── build/ │ │ └── webpack.config.js │ └── test/ │ ├── index.html │ ├── main.a772dd109d73b782cf7a.bundle.js │ └── manifest.82c3c467821f8c1b613bc6f741480697.json └── runTest.js