Seedux

Seedux

Redux dev tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Seedux",
  "description": "Redux dev tool",
  "version": "0.0.7",
  "author": "Ahmad Kanawi, Michael Lampe, Stephenie Reimer",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "./popup/popup.html",
    "default_title": "Seedux"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://localhost/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*"
      ],
      "js": [
        "content/script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": true
  }
}