Default Player for Google Drive™

Default Player for Google Drive™

Open any audio or image in the default viewer on Google Drive™, Google Classroom™ and Gmail™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Default Player for Google Drive™",
  "description": "Open any audio or image in the default viewer on Google Drive™, Google Classroom™ and Gmail™",
  "author": "Skyfighteer",
  "version": "1.0.2",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://drive.google.com/*",
        "https://mail.google.com/*",
        "https://classroom.google.com/*"
      ],
      "js": [
        "content-script.js",
        "arrive.js"
      ],
      "run_at": "document_start"
    }
  ]
}