sidenav

sidenav

sidenav is an organization tool for teams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "sidenav",
  "description": "sidenav is an organization tool for teams",
  "version": "1.1.14",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "clipboardWrite",
    "sidePanel",
    "tabs",
    "bookmarks",
    "favicon",
    "contextMenus"
  ],
  "optional_permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newTab.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_title": "Search Sidenav",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+A",
        "mac": "Command+Shift+A"
      },
      "description": "Search Sidenav"
    },
    "open_sidenav": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "Open Sidenav"
    },
    "create_short_url": {
      "suggested_key": {
        "default": "Ctrl+Shift+D",
        "mac": "Command+Shift+D"
      },
      "description": "Create Short Url"
    }
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injectedApp.js"
      ]
    }
  ]
}