ng-detector

ng-detector

Detects AngularJS apps as you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ng-detector",
  "description": "Detects AngularJS apps as you browse.",
  "author": "Igor Minar",
  "version": "1.2.1",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "AngularJS Super-Powered"
  },
  "web_accessible_resources": [
    "inject.js"
  ]
}