Home | History | Annotate | Download | only in longdesc
      1 {
      2   "name": "__MSG_appName__",
      3   "version": "0.1",
      4   "description": "__MSG_appDesc__",
      5   "background": {
      6     "scripts": [ "background.js" ]
      7   },
      8   "content_scripts": [{
      9     "matches": ["<all_urls>"],
     10     "js": ["lastRightClick.js"]
     11   }],
     12   "icons": {
     13     "16": "icon.png"
     14   },
     15   "permissions": [
     16     "tabs",
     17     "contextMenus",
     18     "storage",
     19     "<all_urls>"
     20   ],
     21   "manifest_version": 2,
     22   "options_page": "options.html"
     23 }
     24