LivaRava

LivaRava

This extension allows you to add information to LivaRava easily using the right mouse button (context menu).

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_appDesc__",
  "default_locale": "en",
  "version": "0.3.4",
  "author": "The LivaRava",
  "homepage_url": "http://www.livarava.com",
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "storage",
    "webNavigation",
    "http://www.livarava.com/*",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "16x16.png",
    "19": "19x19.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "browser_action": {
    "default_title": "__MSG_defTitle__",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://*.livarava.com/*"
    ]
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "closePanel.js",
        "prefill.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}