Vibes

Vibes

How's your browser activity treating you

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vibes",
  "version": "0.0.0.1",
  "description": "How's your browser activity treating you",
  "author": "Raphael Arar",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Vibes",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "vibes-16x16.png",
    "48": "vibes-48x48.png",
    "128": "vibes-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "client.js"
      ]
    }
  ],
  "manifest_version": 2
}