Identify hate groups on GuideStar

Identify hate groups on GuideStar

Shows SPLC-identified hate groups on GuideStar & CharityNavigator pages. Not affiliated with GuideStar, CharityNavigator, or SPLC.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Identify hate groups on GuideStar",
  "version": "0.5.0",
  "manifest_version": 2,
  "description": "Shows SPLC-identified hate groups on GuideStar & CharityNavigator pages. Not affiliated with GuideStar, CharityNavigator, or SPLC.",
  "homepage_url": "https://www.washingtonpost.com/news/morning-mix/wp/2017/06/26/after-conservative-backlash-charity-tracker-guidestar-removes-hate-group-labels/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "page_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Identify hate groups on GuideStar & CharityNavigator"
  },
  "permissions": [
    "https://www.guidestar.org/*",
    "https://www.charitynavigator.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.guidestar.org/*",
        "https://www.charitynavigator.org/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}