OrangeCloud Enhancer

OrangeCloud Enhancer

Hide reposts from your SoundCloud® stream, and find popular songs in SoundCloud playlists or pages of favourites or user tracks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OrangeCloud Enhancer",
  "version": "1.17",
  "description": "Hide reposts from your SoundCloud® stream, and find popular songs in SoundCloud playlists or pages of favourites or user tracks.",
  "page_action": {
    "default_icon": {
      "16": "images/oce-icon-16.png",
      "64": "images/oce-icon-64.png",
      "128": "images/oce-icon-128.png"
    },
    "default_title": "OrangeCloud Enhancer",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://soundcloud.com/*"
      ],
      "js": [
        "js/jquery-3.1.0.min.js"
      ]
    },
    {
      "matches": [
        "https://soundcloud.com/stream"
      ],
      "js": [
        "js/injected_button.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "fonts/fontawesome-webfont.woff2",
    "fonts/fontawesome-webfont.woff",
    "fonts/fontawesome-webfont.ttf",
    "css/font-awesome.min.css",
    "css/injected_button.css",
    "injected_button.html",
    "main.html"
  ],
  "permissions": [
    "cookies",
    "activeTab",
    "declarativeContent",
    "https://soundcloud.com/*",
    "http://api.soundcloud.com/*"
  ]
}