Bark

Bark

push to iPhone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bark",
  "version": "1.2.3",
  "manifest_version": 2,
  "description": "push to iPhone",
  "permissions": [
    "*://*/*",
    "activeTab",
    "tabs",
    "storage",
    "notifications",
    "contextMenus",
    "clipboardRead"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "bark_48.png"
  ],
  "icons": {
    "16": "bark_16.png",
    "48": "bark_48.png",
    "128": "bark_128.png"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "16": "bark_16.png",
      "48": "bark_48.png",
      "128": "bark_128.png"
    },
    "default_title": "Bark"
  }
}