isTrust

isTrust

Verify the trustability of any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "author": "Internet Society Belgium",
  "default_locale": "en",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "alarms",
    "contextMenus",
    "geolocation"
  ],
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/[email protected]"
  },
  "background": {
    "scripts": [
      "background/index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_scripts/index.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup/index.html",
    "default_title": "__MSG_extension_name__",
    "default_icon": {
      "48": "icons/icon.png",
      "96": "icons/[email protected]"
    }
  },
  "version": "3.9.1"
}