Facts and Fakes in video

Facts and Fakes in video

Fact check in video for Youtube and Rutube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.1.3.0",
  "minimum_chrome_version": "109",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "default_locale": "en",
  "author": "Igor Lebedev",
  "permissions": [
    "storage",
    "identity",
    "declarativeContent",
    "tabs",
    "offscreen"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.youtube-nocookie.com/*",
        "*://*.rutube.ru/*"
      ],
      "exclude_matches": [
        "*://*.music.youtube.com/*",
        "*://*.rutube.sport/*"
      ],
      "js": [
        "content.js",
        "content_channels.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./images/icon_gray-16.png",
      "48": "./images/icon_gray-48.png",
      "128": "./images/icon_gray-128.png"
    },
    "js": [
      "popup.js"
    ],
    "css": [
      "popup.css"
    ],
    "default_title": "__MSG_extensionDefaultTitle__"
  },
  "icons": {
    "16": "./images/icon_color-16.png",
    "48": "./images/icon_color-48.png",
    "128": "./images/icon_color-128.png"
  },
  "oauth2": {
    "client_id": "1042560304355-2errmtelh9cjtpiouu54msm7hov9pkpd.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlM5mm+jLvjRJO5MD2A7o141dLFazU2eNBMcPOLP+9rkOdr8N60vHtsFZ0aZ6qfOPaL+eN26taDLjhLQiY/cFf77RdP1iksoOGBYCAUYEPb6OhyJcQYNuWvC+jf43SA1Uu4gKe5l7coBpKCm5Q6UTKHQIpF0lyZ+DjnJs97KKBqWU5nZlXQeshcvrN+XlWNqydX27UJzr8g5HCPSHlREIAs4euQEjODJh48LY1euYY0B4tE+iT+BMWMv1DVQ5QNhMB+2JGaYO6q9brcUxc/Dh+2Mh6jG1gGc3goLXajbQl0Hhx+u07AdxNItn4z7aS7u7RAzquJdTnFrPC+fMMt6XOQIDAQAB"
}