Notify My Android

Notify My Android

Sends a link to the currently visited page as a push notification to your Android device.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Notify My Android",
  "version": "0.3",
  "manifest_version": 2,
  "description": "Sends a link to the currently visited page as a push notification to your Android device.",
  "icons": {
    "96": "assets/icon96.png",
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/getSelection.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/icon19.png",
    "default_title": "NotifyMyAndroid",
    "default_popup": "html/popup.html"
  },
  "options_page": "fancy-settings/index.html",
  "background": {
    "scripts": [
      "fancy-settings/lib/store.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/"
  ]
}