librevents

librevents

A tool to liberate events from corporate closed network to the fediverse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "librevents",
  "short_name": "librevents",
  "description": "A tool to liberate events from corporate closed network to the fediverse.",
  "version": "0.3.6",
  "author": "Data Liberation Network",
  "icons": {
    "16": "librevent-16.png",
    "48": "librevent-48.png",
    "128": "librevent-128.png"
  },
  "browser_action": {
    "default_icon": "librevent-16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "https://*.facebook.com/",
    "https://libr.events/"
  ],
  "background": {
    "scripts": [
      "./background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "./app.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ]
}