Wifi Share

Wifi Share

A minimal browser extension to allow you to share a scratchpad over the network.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Wifi Share",
  "name": "Wifi Share",
  "description": "A minimal browser extension to allow you to share a scratchpad over the network.",
  "version": "0.0.2",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "start_url": ".",
  "display": "standalone",
  "theme_color": "#000000",
  "background_color": "#ffffff",
  "background": {
    "service_worker": "static/js/background.js"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}