GLaunch

GLaunch

GLaunch is a simple tool which provides a popup panel linking to various Google services - Chrome Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GLaunch",
  "version": "1.6.2",
  "manifest_version": 3,
  "short_name": "GLaunch",
  "author": "Oddineers",
  "description": "GLaunch is a simple tool which provides a popup panel linking to various Google services - Chrome Extension.",
  "icons": {
    "16": "cogton16.png",
    "48": "cogton48.png",
    "128": "cogton128.png"
  },
  "action": {
    "default_icon": "cogton128.png",
    "default_title": "GLaunch - A Google Service Launcher",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_page": "./options.html",
  "background": {
    "service_worker": "./js/background.js"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      },
      "description": "Toggle popup window"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    },
    "edge": {
      "browser_action_next_to_addressbar": true
    }
  }
}