v chill

v chill

make your browser v chill. https://github.com/kevinmcvey/v-chill

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "v chill",
  "version": "1.0",
  "description": "make your browser v chill. https://github.com/kevinmcvey/v-chill",
  "icons": {
    "48": "media/logo48.png",
    "128": "media/logo128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/chill.js"
      ],
      "run_at": "document_idle"
    }
  ]
}