My Dropper

My Dropper

My Dropper allows you to drag and drop your personal informations, your notes and track shortered url

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Dropper",
  "version": "1.6",
  "manifest_version": 2,
  "description": "My Dropper allows you to drag and drop your personal informations, your notes and track shortered url",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/defaultIcon19x19.png",
    "default_title": "My Dropper"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/dependancies/jquery-2.1.3.min.js",
        "js/models/model.js",
        "js/controllers/mainCtrl.js",
        "js/views/ui.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "background",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "css/styles.css",
    "fonts/*.*",
    "img/*.*"
  ]
}