LinkedNotes

LinkedNotes

The extension adds a handy list of notes that synchronizes with Google Bookmarks. A text selected on a web-page can be saved in the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "LinkedNotes",
  "version": "0.27",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "tabs",
    "unlimited_storage",
    "https://www.google.com/bookmarks/*",
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "16": "images/sticky_note_pin.png",
    "24": "images/notepad24.png",
    "48": "images/notepad48.png",
    "128": "images/notepad128.png"
  },
  "browser_action": {
    "default_title": "LinkedNotes",
    "default_icon": "images/notepad24.png",
    "default_popup": "popup.html"
  },
  "minimum_chrome_version": "6.0.0.0"
}