Take Your Money Elsewhere

Take Your Money Elsewhere

A browser extension that helps you divest from Trump-affiliated brands. Inspired by the #GrabYourWallet movement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Take Your Money Elsewhere",
  "short_name": "TYME",
  "version": "1.0.3",
  "description": "A browser extension that helps you divest from Trump-affiliated brands. Inspired by the #GrabYourWallet movement.",
  "icons": {
    "16": "icons/[email protected]",
    "32": "icons/[email protected]",
    "48": "icons/[email protected]",
    "64": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "homepage_url": "http://www.takeyourmoneyelsewhere.com",
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "images/fist-outline.svg",
    "images/shopElsewhere-noun_859338.svg",
    "images/donate-noun_626748.svg",
    "images/dismiss-noun_712706.svg",
    "images/contact-noun_169007.svg"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/[email protected]",
      "32": "icons/[email protected]",
      "48": "icons/[email protected]",
      "64": "icons/[email protected]",
      "128": "icons/[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}