Support a Cause ❤️ by LMGTFY

Support a Cause ❤️ by LMGTFY

Every tab you open raises money for a cause, Just by surfing the web, you're feeding children, protecting the rainforest and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Support a Cause ❤️ by LMGTFY",
  "description": "Every tab you open raises money for a cause, Just by surfing the web, you're feeding children, protecting the rainforest and more.",
  "version": "1.0.7",
  "short_name": "❤️ a Cause ",
  "manifest_version": 2,
  "icons": {
    "16": "icons/heart16.png",
    "32": "icons/heart32.png",
    "48": "icons/heart48.png",
    "64": "icons/heart64.png",
    "128": "icons/heart128.png",
    "256": "icons/heart256.png"
  },
  "chrome_url_overrides": {
    "newtab": "tab/tab.html"
  },
  "browser_action": {
    "default_title": "lmgtfy",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*",
    "scss/*",
    "fonts/*",
    "icons/*"
  ],
  "incognito": "spanning",
  "content_security_policy": "script-src https://cdn.newtab.eco https://www.googleadservices.com https://www.google.com https://www.google-analytics.com https://cdn.firebase.com https://*.firebaseio.com https://www.googleapis.com https://apis.google.com https://ssl.google-analytics.com https://www.googletagmanager.com 'unsafe-eval' 'self'; object-src 'unsafe-eval' 'self'; ; connect-src *; ",
  "optional_permissions": [
    "system.storage",
    "system.display",
    "system.cpu",
    "system.memory",
    "bookmarks",
    "downloads",
    "downloads.open",
    "sessions",
    "browsingData",
    "management"
  ],
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "topSites",
    "geolocation",
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "ws://*/*",
    "wss://*/*",
    "webRequest",
    "webRequestBlocking"
  ]
}