Lemmy Go

Lemmy Go

Quickly navigate to a Lemmy community from the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lemmy Go",
  "description": "Quickly navigate to a Lemmy community from the address bar.",
  "version": "0.9.0",
  "manifest_version": 3,
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "omnibox": {
    "keyword": "lg"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "optional_host_permissions": [
    "<all_urls>"
  ]
}