URL Notes : Capturing Notes from URLs

URL Notes : Capturing Notes from URLs

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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "URL Notes : Capturing Notes from URLs",
  "version": "2.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_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icons/icon-16.png",
      "48": "images/icons/icon-48.png",
      "128": "images/icons/icon-128.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",
    "favicon",
    "activeTab",
    "contextMenus",
    "notifications",
    "unlimitedStorage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Execute Browser Action"
    },
    "open_urlnotes_dashboard": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Open URL Notes Dashboard"
    }
  }
}