Konnecto-Panel

Konnecto-Panel

Use the crowd wisdom and find out where others get their purchase recommendations from.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Konnecto-Panel",
  "version": "2.04",
  "description": "Use the crowd wisdom and find out where others get their purchase recommendations from.",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "24": "assets/icons/icon-24.png",
      "32": "assets/icons/icon-32.png",
      "48": "assets/icons/icon-48.png",
      "128": "assets/icons/icon-128.png"
    },
    "default_title": "Konnecto-Panel"
  },
  "permissions": [
    "storage",
    "alarms",
    "history",
    "<all_urls>"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "runtime.js",
      "aws.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mozilla.org/*"
      ],
      "js": [
        "background.js",
        "runtime.js",
        "aws.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/icon-16.png",
    "24": "assets/icons/icon-24.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}