TxtPad

TxtPad

Quick Notes from Anywhere!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TxtPad",
  "description": "Quick Notes from Anywhere!",
  "version": "0.0.0.3",
  "homepage_url": "http://txtpad.in",
  "icons": {
    "16": "images/tbxlogo16.png",
    "48": "images/tbxlogo48.png",
    "128": "images/tbxlogo128.png"
  },
  "browser_action": {
    "default_icon": "images/tbxlogo19.png",
    "default_title": "TxtPad",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/jquery-2.0.0.min.js",
      "scripts/common.min.js",
      "scripts/background.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/content_script.min.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "images/tbxlogo48.png",
    "images/tbxlogo19.png",
    "scripts/content_script.min.js.map"
  ]
}