Add reminder

Add reminder

This extension will save selected text from chrome to Aladdinpro as a reminder

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Add reminder",
  "short_name": "Add reminder",
  "description": "This extension will save selected text from chrome to Aladdinpro as a reminder",
  "version": "1.0",
  "author": "Arun Chandran - [email protected]",
  "browser_action": {
    "default_icon": {
      "16": "icon_round.png",
      "24": "icon_round.png",
      "32": "icon_round.png",
      "128": "icon_round.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "events.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icon_round.png",
    "48": "icon_round.png"
  }
}