IN2IT social

IN2IT social

Connect to IN2IT social backend and gather relevant social content to create your news story.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "IN2IT social",
  "version": "3.1.0",
  "description": "Connect to IN2IT social backend and gather relevant social content to create your news story.",
  "icons": {
    "128": "icons/iSo.png"
  },
  "background": {
    "service": {
      "run_at": "startup",
      "scripts": [
        "./js/background.js"
      ]
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "action": {
    "default_icon": {
      "128": "icons/SoBad.png"
    },
    "default_title": "IN2IT social",
    "default_popup": "soExt.html"
  }
}