MyOfficeTab

MyOfficeTab

Quick access and search for your Google Drive documents directly on your browser NewTab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyOfficeTab",
  "short_name": "myofficetab",
  "description": "Quick access and search for your Google Drive documents directly on your browser NewTab page.",
  "version": "1.0.18.803",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab/index.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_title": "MyOfficeTab",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "page": "background/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.myofficetab.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://newtab.myofficetab.com/43/default/*"
      ],
      "js": [
        "tabContent.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "*://*.myofficetab.com/*",
    "cookies",
    "storage",
    "tabs",
    "management"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "/icons/16.png"
  ]
}