Fake News Trap Solutecia

Fake News Trap Solutecia

The AI of Solutecia detects the false news within the content and frames it to warn the reader, in any web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "1.1.0",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://www.solutecia.com/es/ia/capturador-de-noticias-falsas",
  "author": "Solutecia SAS",
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "*://fakenewstrap.solutecia.com/*",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background_scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon_36.png",
    "default_title": "Fake News Trap",
    "default_popup": "popup/fakenewstrap_config.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_scripts/solutecia_fake_news_trap.js"
      ]
    }
  ]
}