gitextract_d1ti6rlb/ ├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── bin/ │ └── launcher.sh ├── build/ │ ├── .eslintrc.json │ └── package.json └── src/ ├── js/ │ ├── config.js │ ├── containers.js │ ├── opener/ │ │ ├── opener.js │ │ ├── parser.js │ │ └── validator.js │ ├── params.js │ ├── popup/ │ │ ├── bookmark.js │ │ ├── containers.js │ │ ├── dom.js │ │ ├── folders.js │ │ ├── popup.js │ │ ├── signature.js │ │ ├── state.js │ │ ├── terminal.js │ │ └── url.js │ ├── security/ │ │ ├── hex.js │ │ ├── keys.js │ │ └── signature.js │ └── tabs.js ├── manifest.json ├── opener.html ├── popup.html └── tests/ ├── lib/ │ ├── chai/ │ │ └── chai.js │ └── mocha/ │ ├── mocha.css │ └── mocha.js ├── opener/ │ ├── parsers.test.js │ └── validator.test.js ├── security/ │ └── hex.test.js ├── testdata/ │ └── example-links.html ├── unit.html └── unit.test.js