Chrome Shark

Chrome Shark

Chrome Shark is an application that transforms web music player into a great full screen music player to fit on your tv.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome Shark",
  "description": "Chrome Shark is an application that transforms web music player into a great full screen music player to fit on your tv.",
  "version": "1.2.1",
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "app/images/*",
    "app/views/*"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "page_action": {
    "default_icon": "48.png",
    "default_title": "Open Chrome Shark on the current page"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "app/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "app/css/minified/styles.min.css"
      ],
      "js": [
        "app/lib/jquery-1.11.2.min.js",
        "app/lib/angular.min.js",
        "app/main.js",
        "app/factories/ChromeShark.PlayerInfoFactory.factory.js",
        "app/factories/ChromeShark.Enums.InterfaceType.factory.js",
        "app/factories/ChromeShark.ViewStateFactory.factory.js",
        "app/factories/ChromeShark.AlbumArtFactory.factory.js",
        "app/services/LastFmService.service.js",
        "app/controllers/ChromeShark.MainController.controller.js",
        "app/controllers/ChromeShark.PlayerController.controller.js",
        "app/controllers/ChromeShark.HelpController.controller.js"
      ]
    }
  ]
}