├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── extension ├── background.html ├── background.js ├── config.js ├── defaultStations.json ├── favorite32-dark.png ├── favorite32.png ├── fonts │ ├── MaterialIcons-Regular.ttf │ ├── MaterialIcons-Regular.woff │ └── MaterialIcons-Regular.woff2 ├── icon128.png ├── icon48-dark.png ├── icon48.png ├── local-storage.js ├── manifest.json ├── nofavorite32-dark.png ├── nofavorite32.png ├── options.css ├── options.html ├── options.js ├── popup.css ├── popup.html ├── popup.js ├── primer-core.css ├── primer-dropdown.css ├── shared.css ├── soma-api.js ├── station-images │ ├── 7soul.png │ ├── bagel.png │ ├── beatblender.png │ ├── bootliquor.png │ ├── brfm.png │ ├── christmas.png │ ├── cliqhop.png │ ├── covers.png │ ├── deepspaceone.png │ ├── defcon.png │ ├── digitalis.png │ ├── doomed.png │ ├── dronezone.png │ ├── dubstep.png │ ├── earwaves.png │ ├── fluid.png │ ├── folkfwd.png │ ├── groovesalad.png │ ├── illstreet.png │ ├── indiepop.png │ ├── jollysoul.png │ ├── live.png │ ├── lush.png │ ├── metal.png │ ├── missioncontrol.png │ ├── poptron.png │ ├── secretagent.png │ ├── seventies.png │ ├── sf1033.png │ ├── silent.png │ ├── sonicuniverse.png │ ├── spacestation.png │ ├── suburbsofgoa.png │ ├── thetrip.png │ ├── thistle.png │ ├── u80s.png │ ├── xmasinfrisko.png │ └── xmasrocks.png └── util.js ├── package.json ├── promo-assets ├── 1280x800.png ├── 1400x560.png ├── 440x280.png └── 920x680.png └── screenshots └── notification.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/README.md -------------------------------------------------------------------------------- /extension/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/background.html -------------------------------------------------------------------------------- /extension/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/background.js -------------------------------------------------------------------------------- /extension/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/config.js -------------------------------------------------------------------------------- /extension/defaultStations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/defaultStations.json -------------------------------------------------------------------------------- /extension/favorite32-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/favorite32-dark.png -------------------------------------------------------------------------------- /extension/favorite32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/favorite32.png -------------------------------------------------------------------------------- /extension/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /extension/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /extension/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /extension/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/icon128.png -------------------------------------------------------------------------------- /extension/icon48-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/icon48-dark.png -------------------------------------------------------------------------------- /extension/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/icon48.png -------------------------------------------------------------------------------- /extension/local-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/local-storage.js -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/nofavorite32-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/nofavorite32-dark.png -------------------------------------------------------------------------------- /extension/nofavorite32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/nofavorite32.png -------------------------------------------------------------------------------- /extension/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/options.css -------------------------------------------------------------------------------- /extension/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/options.html -------------------------------------------------------------------------------- /extension/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/options.js -------------------------------------------------------------------------------- /extension/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/popup.css -------------------------------------------------------------------------------- /extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/popup.html -------------------------------------------------------------------------------- /extension/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/popup.js -------------------------------------------------------------------------------- /extension/primer-core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/primer-core.css -------------------------------------------------------------------------------- /extension/primer-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/primer-dropdown.css -------------------------------------------------------------------------------- /extension/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/shared.css -------------------------------------------------------------------------------- /extension/soma-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/soma-api.js -------------------------------------------------------------------------------- /extension/station-images/7soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/7soul.png -------------------------------------------------------------------------------- /extension/station-images/bagel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/bagel.png -------------------------------------------------------------------------------- /extension/station-images/beatblender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/beatblender.png -------------------------------------------------------------------------------- /extension/station-images/bootliquor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/bootliquor.png -------------------------------------------------------------------------------- /extension/station-images/brfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/brfm.png -------------------------------------------------------------------------------- /extension/station-images/christmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/christmas.png -------------------------------------------------------------------------------- /extension/station-images/cliqhop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/cliqhop.png -------------------------------------------------------------------------------- /extension/station-images/covers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/covers.png -------------------------------------------------------------------------------- /extension/station-images/deepspaceone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/deepspaceone.png -------------------------------------------------------------------------------- /extension/station-images/defcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/defcon.png -------------------------------------------------------------------------------- /extension/station-images/digitalis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/digitalis.png -------------------------------------------------------------------------------- /extension/station-images/doomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/doomed.png -------------------------------------------------------------------------------- /extension/station-images/dronezone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/dronezone.png -------------------------------------------------------------------------------- /extension/station-images/dubstep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/dubstep.png -------------------------------------------------------------------------------- /extension/station-images/earwaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/earwaves.png -------------------------------------------------------------------------------- /extension/station-images/fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/fluid.png -------------------------------------------------------------------------------- /extension/station-images/folkfwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/folkfwd.png -------------------------------------------------------------------------------- /extension/station-images/groovesalad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/groovesalad.png -------------------------------------------------------------------------------- /extension/station-images/illstreet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/illstreet.png -------------------------------------------------------------------------------- /extension/station-images/indiepop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/indiepop.png -------------------------------------------------------------------------------- /extension/station-images/jollysoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/jollysoul.png -------------------------------------------------------------------------------- /extension/station-images/live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/live.png -------------------------------------------------------------------------------- /extension/station-images/lush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/lush.png -------------------------------------------------------------------------------- /extension/station-images/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/metal.png -------------------------------------------------------------------------------- /extension/station-images/missioncontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/missioncontrol.png -------------------------------------------------------------------------------- /extension/station-images/poptron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/poptron.png -------------------------------------------------------------------------------- /extension/station-images/secretagent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/secretagent.png -------------------------------------------------------------------------------- /extension/station-images/seventies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/seventies.png -------------------------------------------------------------------------------- /extension/station-images/sf1033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/sf1033.png -------------------------------------------------------------------------------- /extension/station-images/silent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/silent.png -------------------------------------------------------------------------------- /extension/station-images/sonicuniverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/sonicuniverse.png -------------------------------------------------------------------------------- /extension/station-images/spacestation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/spacestation.png -------------------------------------------------------------------------------- /extension/station-images/suburbsofgoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/suburbsofgoa.png -------------------------------------------------------------------------------- /extension/station-images/thetrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/thetrip.png -------------------------------------------------------------------------------- /extension/station-images/thistle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/thistle.png -------------------------------------------------------------------------------- /extension/station-images/u80s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/u80s.png -------------------------------------------------------------------------------- /extension/station-images/xmasinfrisko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/xmasinfrisko.png -------------------------------------------------------------------------------- /extension/station-images/xmasrocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/station-images/xmasrocks.png -------------------------------------------------------------------------------- /extension/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/extension/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/package.json -------------------------------------------------------------------------------- /promo-assets/1280x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/promo-assets/1280x800.png -------------------------------------------------------------------------------- /promo-assets/1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/promo-assets/1400x560.png -------------------------------------------------------------------------------- /promo-assets/440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/promo-assets/440x280.png -------------------------------------------------------------------------------- /promo-assets/920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/promo-assets/920x680.png -------------------------------------------------------------------------------- /screenshots/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheshire137/soma-chrome/HEAD/screenshots/notification.png --------------------------------------------------------------------------------