Meu Timão

Meu Timão

Acompanhe o Corinthians no seu Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meu Timão",
  "version": "87",
  "description": "Acompanhe o Corinthians no seu Google Chrome",
  "manifest_version": 2,
  "icons": {
    "48": "img/ico/48.png",
    "128": "img/ico/128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.meutimao.com.br/*"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "css": [
        "css/contentstyle.css"
      ],
      "all_frames": false
    }
  ],
  "permissions": [
    "notifications",
    "https://*.meutimao.com.br/*"
  ],
  "browser_action": {
    "default_title": "Meu Timão",
    "default_icon": "img/ico/favicon.png",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}