├── README.md ├── background.js ├── bridge.js ├── content_scripts ├── contentScript.js ├── db_interaction.js ├── dom_loader.js ├── helper_functions.js └── js-beautify.js ├── content_styles └── ultimext.css ├── db.js ├── fonts └── la-solid-900.woff2 ├── icon128.png ├── icon48.png └── manifest.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/background.js -------------------------------------------------------------------------------- /bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/bridge.js -------------------------------------------------------------------------------- /content_scripts/contentScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_scripts/contentScript.js -------------------------------------------------------------------------------- /content_scripts/db_interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_scripts/db_interaction.js -------------------------------------------------------------------------------- /content_scripts/dom_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_scripts/dom_loader.js -------------------------------------------------------------------------------- /content_scripts/helper_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_scripts/helper_functions.js -------------------------------------------------------------------------------- /content_scripts/js-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_scripts/js-beautify.js -------------------------------------------------------------------------------- /content_styles/ultimext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/content_styles/ultimext.css -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/db.js -------------------------------------------------------------------------------- /fonts/la-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/fonts/la-solid-900.woff2 -------------------------------------------------------------------------------- /icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/icon128.png -------------------------------------------------------------------------------- /icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/icon48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edereynaldesaintmichel/ultimext/HEAD/manifest.json --------------------------------------------------------------------------------