Paws what you're doing

Paws what you're doing

Have you been dreaming about a cat coming by, while you browse Internet? Meet "Paws what you are doing". Once you install the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Paws what you're doing",
  "version": "0.0.0.1",
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "video_block.html",
    "video_1.webm"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "glue.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "hot-reload.js",
      "glue.js",
      "background.js"
    ],
    "css": [
      "style.css"
    ]
  }
}