Give a Quick Shout Out to Christina Applegate

Give a Quick Shout Out to Christina Applegate

Give a quick shout out to Christina Applegate through opening a new tab Enable or disable the extension through the pop up menu toggle

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Give a Quick Shout Out to Christina Applegate",
  "version": "0.11",
  "description": "Give a quick shout out to Christina Applegate through opening a new tab",
  "icons": {
    "48": "icons/ca3.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "ca_Tab.html"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "20": "icons/ca2.png",
      "40": "icons/ca4.png"
    },
    "default_title": "Christina Applegate!",
    "default_popup": "ca_Tab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}