Webpad

Webpad

Webpad - быстрые заметки.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Webpad",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Webpad - быстрые заметки.",
  "icons": {
    "16": "img/Notepad_16.png",
    "32": "img/Notepad_32.png",
    "48": "img/Notepad_48.png",
    "64": "img/Notepad_64.png",
    "96": "img/Notepad_96.png",
    "128": "img/Notepad_128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "img/Notepad_128.png",
    "default_popup": "notepad.html",
    "badge": 0
  },
  "background": {
    "scripts": [
      "js/db.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/jquery-1.7.2.min.js",
        "js/notepadInlection.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "lib/jquery-1.7.2.min.js",
        "js/ad.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "minimum_chrome_version": "18",
  "permissions": [
    "contextMenus",
    "tabs",
    "unlimitedStorage",
    "*://*/*"
  ]
}