V2ex lite

V2ex lite

A Chrome extension for V2ex

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "V2ex lite",
  "description": "A Chrome extension for V2ex",
  "version": "1.0.0",
  "action": {
    "default_icon": "16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/",
        "https://*/"
      ],
      "js": [
        "js/content-script.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [],
  "optional_host_permissions": [],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}