├── .gitignore ├── LICENSE ├── README.md ├── icons ├── featherIcons │ └── unhide.svg ├── heroIcons │ └── unhide.svg ├── home.png └── home.svg ├── images ├── Screenshot_20231021-210327.png ├── Screenshot_20231021-210343.png ├── Screenshot_20231021-210418.png ├── Screenshot_20231025-173119.png ├── Screenshot_20231025-173158.png ├── Screenshot_20231025-173231.png ├── Screenshot_20231027-202422.png ├── Screenshot_20231027-202443.png ├── Screenshot_20231027-202606.png ├── Screenshot_20231027-202706.png ├── Screenshot_20231027-202727.png ├── Screenshot_20231027-203438.png ├── Screenshot_20231027-212100.png ├── Screenshot_20231125-221632.png ├── Screenshot_20231125-221820.png ├── Screenshot_20240101-161624.png ├── Screenshot_20240101-161749.png ├── Screenshot_20240101-162251.png ├── Screenshot_20240101-162313.png ├── Screenshot_20240101-163042.png ├── Screenshot_20240101-163148.png ├── Screenshot_20240101-163308.png ├── Screenshot_20240101-163355.png ├── Screenshot_20240110-212734.png ├── Screenshot_20240110-213143.png ├── Screenshot_20240110-213148.png ├── Screenshot_20240110-213309.png └── get-the-addon-fx-apr-2020.svg ├── manifest.json ├── pages ├── blank.html ├── homepage.html ├── settings.html ├── toolbar.html └── topSitePrompt.html ├── scripts ├── background.js ├── content.js ├── homepage.js ├── settings.js └── topSitePrompt.js └── styles ├── blank.css ├── homepage.css ├── settings.css ├── toolbar.css └── topSitePrompt.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/README.md -------------------------------------------------------------------------------- /icons/featherIcons/unhide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/icons/featherIcons/unhide.svg -------------------------------------------------------------------------------- /icons/heroIcons/unhide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/icons/heroIcons/unhide.svg -------------------------------------------------------------------------------- /icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/icons/home.png -------------------------------------------------------------------------------- /icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/icons/home.svg -------------------------------------------------------------------------------- /images/Screenshot_20231021-210327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231021-210327.png -------------------------------------------------------------------------------- /images/Screenshot_20231021-210343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231021-210343.png -------------------------------------------------------------------------------- /images/Screenshot_20231021-210418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231021-210418.png -------------------------------------------------------------------------------- /images/Screenshot_20231025-173119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231025-173119.png -------------------------------------------------------------------------------- /images/Screenshot_20231025-173158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231025-173158.png -------------------------------------------------------------------------------- /images/Screenshot_20231025-173231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231025-173231.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-202422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-202422.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-202443.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-202443.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-202606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-202606.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-202706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-202706.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-202727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-202727.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-203438.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-203438.png -------------------------------------------------------------------------------- /images/Screenshot_20231027-212100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231027-212100.png -------------------------------------------------------------------------------- /images/Screenshot_20231125-221632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231125-221632.png -------------------------------------------------------------------------------- /images/Screenshot_20231125-221820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20231125-221820.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-161624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-161624.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-161749.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-161749.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-162251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-162251.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-162313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-162313.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-163042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-163042.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-163148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-163148.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-163308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-163308.png -------------------------------------------------------------------------------- /images/Screenshot_20240101-163355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240101-163355.png -------------------------------------------------------------------------------- /images/Screenshot_20240110-212734.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240110-212734.png -------------------------------------------------------------------------------- /images/Screenshot_20240110-213143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240110-213143.png -------------------------------------------------------------------------------- /images/Screenshot_20240110-213148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240110-213148.png -------------------------------------------------------------------------------- /images/Screenshot_20240110-213309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/Screenshot_20240110-213309.png -------------------------------------------------------------------------------- /images/get-the-addon-fx-apr-2020.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/images/get-the-addon-fx-apr-2020.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/manifest.json -------------------------------------------------------------------------------- /pages/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/pages/blank.html -------------------------------------------------------------------------------- /pages/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/pages/homepage.html -------------------------------------------------------------------------------- /pages/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/pages/settings.html -------------------------------------------------------------------------------- /pages/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/pages/toolbar.html -------------------------------------------------------------------------------- /pages/topSitePrompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/pages/topSitePrompt.html -------------------------------------------------------------------------------- /scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/scripts/background.js -------------------------------------------------------------------------------- /scripts/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/scripts/content.js -------------------------------------------------------------------------------- /scripts/homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/scripts/homepage.js -------------------------------------------------------------------------------- /scripts/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/scripts/settings.js -------------------------------------------------------------------------------- /scripts/topSitePrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/scripts/topSitePrompt.js -------------------------------------------------------------------------------- /styles/blank.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/styles/blank.css -------------------------------------------------------------------------------- /styles/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/styles/homepage.css -------------------------------------------------------------------------------- /styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/styles/settings.css -------------------------------------------------------------------------------- /styles/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/styles/toolbar.css -------------------------------------------------------------------------------- /styles/topSitePrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristhianX/essential-buttons-toolbar/HEAD/styles/topSitePrompt.css --------------------------------------------------------------------------------