Internet Friends

Internet Friends

Bump into other people when browsing the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "1.1.6",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.internetfriends.social/*",
      "*://internetfriends.social/*",
      "*://internetfriends-website.web.app/",
      "*://internetfriends-website.firebaseapp.com/"
    ],
    "accepts_tls_channel_id": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [],
      "css": [
        "styles/inject.css"
      ],
      "js": [
        "libs/iro/iro.js",
        "libs/jquery-3.5.1.min.js",
        "scripts/logger.js",
        "scripts/settings.js",
        "scripts/inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/logger.js",
        "scripts/settings.js",
        "scripts/background.js",
        "scripts/popup.js",
        "html/iframe/chat.html",
        "scripts/bundle.js",
        "styles/core.css",
        "styles/chat.css",
        "styles/slider.css",
        "styles/popup.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "InternetFriends"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}