Epiverse

Epiverse

View Reddit and Hacker News comments on all webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Epiverse",
  "version": "3.1.0",
  "description": "View Reddit and Hacker News comments on all webpages.",
  "web_accessible_resources": [
    "app/index.html",
    "extension/config.json",
    "extension/assets/logo_neon_gray.svg"
  ],
  "icons": {
    "16": "extension/assets/icon16.png",
    "48": "extension/assets/icon48.png",
    "128": "extension/assets/icon128.png"
  },
  "externally_connectable": {
    "ids": []
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "extension/scripts/backgroundUtils.js",
      "extension/scripts/backgroundGA.js",
      "extension/scripts/backgroundInstall.js",
      "extension/scripts/backgroundMessaging.js",
      "extension/scripts/hackernewsUtils.js",
      "extension/scripts/redditUtils.js"
    ],
    "persistent": false
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "extension/scripts/contentScript.js"
      ],
      "css": [
        "extension/style.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  }
}