Brosnan Background

Brosnan Background

Replace the background of websites with a photo of World's Sexiest Man 2001, Pierce Brosnan from the Oscar-snubbed classic Mamma Mia

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Brosnan Background",
  "version": "1",
  "description": "Replace the background of websites with a photo of World's Sexiest Man 2001, Pierce Brosnan from the Oscar-snubbed classic Mamma Mia",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Where are those happy days?"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "inject.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "content.css"
  ]
}