WordPress Theme Detector

WordPress Theme Detector

This chrome extension searches for any active wordpress themes in your active chrome tab, and will display the theme name.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WordPress Theme Detector",
  "author": "Florin from WPRiders",
  "version": "1.2.1",
  "permissions": [
    "tabs",
    "<all_urls>",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  }
}