├── .gitignore ├── LICENSE ├── README.md └── src ├── background.js ├── icons ├── refresh-16-blue.svg ├── refresh-16-dark.svg ├── refresh-16-light.svg ├── refresh-16.correct.svg ├── refresh-48.svg ├── stop-16-blue.svg ├── stop-16-dark.svg └── stop-16-light.svg ├── manifest.json └── settings ├── options.html └── options.js /.gitignore: -------------------------------------------------------------------------------- 1 | reloadInAddressBar.xpi 2 | .directory 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/README.md -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/background.js -------------------------------------------------------------------------------- /src/icons/refresh-16-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/refresh-16-blue.svg -------------------------------------------------------------------------------- /src/icons/refresh-16-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/refresh-16-dark.svg -------------------------------------------------------------------------------- /src/icons/refresh-16-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/refresh-16-light.svg -------------------------------------------------------------------------------- /src/icons/refresh-16.correct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/refresh-16.correct.svg -------------------------------------------------------------------------------- /src/icons/refresh-48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/refresh-48.svg -------------------------------------------------------------------------------- /src/icons/stop-16-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/stop-16-blue.svg -------------------------------------------------------------------------------- /src/icons/stop-16-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/stop-16-dark.svg -------------------------------------------------------------------------------- /src/icons/stop-16-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/icons/stop-16-light.svg -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/settings/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/settings/options.html -------------------------------------------------------------------------------- /src/settings/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trubens/reloadInAddressBarExtension/HEAD/src/settings/options.js --------------------------------------------------------------------------------