Mercury

Mercury

Send Tweets from Roam

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mercury",
  "description": "Send Tweets from Roam",
  "version": "0.0.5",
  "web_accessible_resources": [
    "*.svg"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://roamresearch.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "images/image16.png",
      "24": "images/image24.png",
      "32": "images/image32.png"
    },
    "default_title": "Mercury",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "mainEvent.js",
      "auth.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/image16.png",
    "32": "images/image32.png",
    "48": "images/image48.png",
    "128": "images/image128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}