Examine source code of datango creator recognition

Inspect and view changes in datango creator recognition source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "datango creator recognition",
  "version": "0.0.8",
  "manifest_version": 2,
  "description": "datango creator recognition support",
  "short_name": "datango creator recognition",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "creator-logo-48.png",
    "128": "creator-logo-128.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "creator-logo-48.png",
      "128": "creator-logo-128.png"
    },
    "default_title": "datango creator"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ]
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "cookies",
    "management"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}