Stopaganda Plus

Stopaganda Plus

Applies decals to Facebook, Twitter, Google, Reddit, and DuckDuckGo showing bias and acc data from mediabiasfactcheck.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Stopaganda Plus",
  "version": "5.1.72",
  "description": "Applies decals to Facebook, Twitter, Google, Reddit, and DuckDuckGo showing bias and acc data from mediabiasfactcheck.com",
  "icons": {
    "48": "icons/stopaganda-plus-48.png",
    "96": "icons/stopaganda-plus-96.png",
    "128": "icons/stopaganda-plus-96-128.png"
  },
  "action": {
    "default_icon": "icons/stopaganda-plus-38.png",
    "default_popup": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "sources/sources.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "stopaganda-r.js"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "stopaganda-fb.js"
      ]
    },
    {
      "matches": [
        "*://*.google.com/*"
      ],
      "js": [
        "stopaganda-g.js"
      ]
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "stopaganda-tw.js"
      ]
    },
    {
      "matches": [
        "*://*.duckduckgo.com/*"
      ],
      "js": [
        "stopaganda-ddg.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.reddit.com/*",
        "*://*.facebook.com/*",
        "*://*.google.com/*",
        "*://*.twitter.com/*",
        "*://*.duckduckgo.com/*"
      ],
      "js": [
        "stopaganda-other.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ]
}