├── .gitignore ├── LICENSE.txt ├── README.md ├── extension.js ├── metadata.json ├── prefs.js └── schemas └── org.gnome.shell.extensions.spotify-ad-blocker.gschema.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/README.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/extension.js -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/metadata.json -------------------------------------------------------------------------------- /prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/prefs.js -------------------------------------------------------------------------------- /schemas/org.gnome.shell.extensions.spotify-ad-blocker.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danigm/spotify-ad-blocker/HEAD/schemas/org.gnome.shell.extensions.spotify-ad-blocker.gschema.xml --------------------------------------------------------------------------------