PushPresence

PushPresence

User Presence PushBullet Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "5",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "idle",
    "storage",
    "notifications"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "offline_enabled": false,
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "options.html"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "128": "images/icon-128.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_appName__"
  }
}