├── LICENSE ├── README.md ├── favicon.ico ├── images ├── background.jpg ├── favicon-16.png ├── favicon-32.png ├── favicon-512.png ├── smiley.png └── space-bg.jpg ├── index.css ├── index.html ├── index.mjs ├── modules ├── cheerio.mjs ├── edit-name.mjs ├── fluent-button.mjs ├── scrape-html.mjs └── utils.mjs └── serviceworker.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/background.jpg -------------------------------------------------------------------------------- /images/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/favicon-16.png -------------------------------------------------------------------------------- /images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/favicon-32.png -------------------------------------------------------------------------------- /images/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/favicon-512.png -------------------------------------------------------------------------------- /images/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/smiley.png -------------------------------------------------------------------------------- /images/space-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/images/space-bg.jpg -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/index.html -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/index.mjs -------------------------------------------------------------------------------- /modules/cheerio.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/modules/cheerio.mjs -------------------------------------------------------------------------------- /modules/edit-name.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/modules/edit-name.mjs -------------------------------------------------------------------------------- /modules/fluent-button.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/modules/fluent-button.mjs -------------------------------------------------------------------------------- /modules/scrape-html.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/modules/scrape-html.mjs -------------------------------------------------------------------------------- /modules/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/modules/utils.mjs -------------------------------------------------------------------------------- /serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonaskuske/fluent-tab/HEAD/serviceworker.js --------------------------------------------------------------------------------