ProdPad

ProdPad

This extension lets you quickly add an idea to your ProdPad project from any website you're on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ProdPad",
  "version": "3.11.1",
  "manifest_version": 2,
  "description": "This extension lets you quickly add an idea to your ProdPad project from any website you're on.",
  "homepage_url": "http://www.prodpad.com",
  "browser_action": {
    "default_title": "Quick add to ProdPad",
    "default_icon": "./img/icons/32x32.png",
    "default_popup": "./index.html"
  },
  "background": {
    "page": "../background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./scripts/selection.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "./img/icons/16x16.png",
    "32": "./img/icons/32x32.png",
    "48": "./img/icons/48x48.png",
    "128": "./img/icons/128x128.png"
  },
  "permissions": [
    "*://*.prodpad.com/",
    "cookies",
    "alarms",
    "storage"
  ]
}