Serum of Truth

Serum of Truth

Serum of Truth is more than just a counter fake news tool, we are a movement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Serum of Truth",
  "description": "Serum of Truth is more than just a counter fake news tool, we are a movement.",
  "version": "1.0.1",
  "permissions": [
    "cookies",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "tabs",
    "http://*/",
    "https://*/",
    "<all_urls>"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "css": [
        "css/show-icon.css"
      ],
      "js": [
        "js/constants.js",
        "js/trans.js",
        "js/utili.js",
        "js/detect-selection-text.js"
      ]
    },
    {
      "matches": [
        "http://*.serumoftruth.com/*",
        "https://*.serumoftruth.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "js/check-login.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    },
    "default_title": "Serum of Truth Extension"
  },
  "web_accessible_resources": [
    "images/*.png",
    "images/*.gif",
    "images/*.svg",
    "css/*",
    "js/*",
    "fonts/*"
  ],
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2
}