Detective Wapuu

Detective Wapuu

Really like a WordPress site? See how they built it with Detective Wapuu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Detective Wapuu",
  "description": "Really like a WordPress site? See how they built it with Detective Wapuu.",
  "version": "1.2.0",
  "author": "sorta brilliant",
  "homepage_url": "https://sortabrilliant.com/detectivewapuu",
  "manifest_version": 2,
  "icons": {
    "16": "images/black/16.png",
    "32": "images/black/32.png"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/black/16.png",
      "32": "images/black/32.png"
    },
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}