Wordpress Theme Checker by SnippetsBoard

Wordpress Theme Checker by SnippetsBoard

This Chrome extension will tell you which sites you visit have been made using Wordpress and also the Theme they are using

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wordpress Theme Checker by SnippetsBoard",
  "version": "1.2",
  "description": "This Chrome extension will tell you which sites you visit have been made using Wordpress and also the Theme they are using",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Wordpress Theme Checker by SnippetsBoard",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon_16.png",
      "32": "icon_32.png",
      "48": "icon_48.png",
      "128": "icon_128.png"
    }
  },
  "manifest_version": 2
}