Drive Explorer

Drive Explorer

Your Drive files in a popup or in a panel next to a document.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.1.2",
  "manifest_version": 3,
  "name": "Drive Explorer",
  "description": "Your Drive files in a popup or in a panel next to a document.",
  "minimum_chrome_version": "114",
  "options_page": "options.html",
  "permissions": [
    "identity",
    "storage",
    "unlimitedStorage",
    "tabs",
    "alarms",
    "sidePanel"
  ],
  "host_permissions": [
    "https://accounts.google.com/*",
    "https://drive-thirdparty.googleusercontent.com/*"
  ],
  "oauth2": {
    "client_id": "471620286378-ud0ngsev8k4v31tb0ue4qub632aip1tq.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive",
      "https://www.googleapis.com/auth/contacts.other.readonly"
    ]
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-32.png"
  },
  "chrome_url_overrides": {},
  "icons": {
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*/d/*",
        "https://drive.google.com/file/d/*",
        "https://colab.research.google.com/drive/*",
        "https://sites.google.com/d/*",
        "https://script.google.com/*",
        "https://jamboard.google.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": []
    }
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon-32.png",
        "icon-48.png",
        "icon-128.png"
      ],
      "matches": []
    }
  ]
}