Global Notes

Global Notes

Saves the link of the current page to the Global Notes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Global Notes",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Saves the link of the current page to the Global Notes.",
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon32.png"
  },
  "background": {
    "scripts": [
      "GlobalNotesBG.js",
      "GlobalNotes.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "GlobalNotesCS.js",
        "GlobalNotes.js",
        "GlobalNotesAjax.js"
      ]
    }
  ],
  "default_locale": "en_US",
  "web_accessible_resources": [
    "loading.gif",
    "title.gif",
    "GlobalNotes.css"
  ],
  "permissions": [
    "tabs",
    "idle",
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ]
}