AngularScope

AngularScope

An extension to inspect the scope AngularJS 1.x scope associated to a DOM node. This is NOT an official extension from the AngularJS team.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AngularScope",
  "version": "0.4resigned1",
  "developer": {
    "name": "Darathor"
  },
  "description": "A simple extension to inspect the AngularJS scope that a DOM element binds to. This is not an official extension by the AngularJS team.",
  "homepage_url": "https://framagit.org/Darathor/angular-scope",
  "default_locale": "fr",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "512": "icons/icon-512.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{383f90dc-7d13-4d80-b821-0dac776bd0c4}"
    }
  }
}