├── .flowconfig ├── .gitattributes ├── .gitignore ├── README.md ├── jsconfig.json ├── package.json └── src ├── icon128.png ├── icon16.png ├── icon48.png ├── main.js ├── manifest.json ├── options.html └── start.js /.flowconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/package.json -------------------------------------------------------------------------------- /src/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/icon128.png -------------------------------------------------------------------------------- /src/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/icon16.png -------------------------------------------------------------------------------- /src/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/icon48.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/main.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/options.html -------------------------------------------------------------------------------- /src/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurtextrem/StopAutoplay/HEAD/src/start.js --------------------------------------------------------------------------------