You Kids and Your Rap Music

You Kids and Your Rap Music

Plays Another one Everytime you open a new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "You Kids and Your Rap Music",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "version": "1",
  "options_page": "options.html",
  "description": "Plays Another one Everytime you open a new tab",
  "background": {
    "scripts": [
      "background.js",
      "options.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "browser_action": {
    "name": "Rappers All Day",
    "default_icon": "img/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "customStyles.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}