URLNotes

URLNotes

URL Notes chrome extension helps you to take note from webpage without leaving your browser and it works on offline mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "URLNotes",
  "version": "1.0.4",
  "description": "URL Notes chrome extension helps you to take note from webpage without leaving your browser and it works on offline mode.",
  "homepage_url": "https://chrome.google.com/webstore/detail/urlnotes/kmokogdgmbeibfkankaooblkjfldbmmo",
  "author": {
    "email": "[email protected]"
  },
  "options_page": "options.html",
  "offline_enabled": true,
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "images/icons/icon-48.png"
  },
  "icons": {
    "16": "images/icons/icon-16.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "notifications",
    "chrome://favicon/*",
    "unlimitedStorage"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+U",
        "mac": "Command+Shift+U",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+U"
      }
    },
    "urlnotes-dashboard": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "linux": "Ctrl+Shift+Y"
      },
      "description": "Open URL Notes Dashboard"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}