Inspector

Inspector

Inspector helps verify the reliability of news sources while surfing the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Inspector",
  "version": "1.0.0",
  "permissions": [
    "activeTab",
    "tabs",
    "https://us-central1-inspector-project.cloudfunctions.net/handler"
  ],
  "description": "Inspector helps verify the reliability of news sources while surfing the internet.",
  "icons": {
    "19": "./icons/Inspector_icon19.png",
    "48": "./icons/Inspector_icon48.png",
    "128": "./icons/Inspector_icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./dist/background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": "./icons/Inspector_icon19.png"
  }
}