Web Technology Notifier

Web Technology Notifier

Displays the Web technology of the current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Web Technology Notifier",
  "version": "1.1.2",
  "description": "Displays the Web technology of the current page.",
  "icons": {
    "128": "web_technology_notifier-128x128.png"
  },
  "permissions": [
    "http://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "web_technology_notifier.js"
      ],
      "matches": [
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {},
  "author": "Cyril Wack",
  "background": {
    "scripts": [
      "web_technologies.js",
      "event_page.js"
    ],
    "persistent": false
  },
  "short_name": "Web Technology"
}