No Politics Inbox - Political email filter

No Politics Inbox - Political email filter

No Politics Inbox - Political email filter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "author": "Star",
  "version": "1.0.3",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "24": "assets/icons/icon-24.png",
    "64": "assets/icons/icon-64.png",
    "128": "assets/icons/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "assets/css/content.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://help.websiteos.com/*"
      ],
      "match_about_blank": true,
      "js": [
        "tests/tests.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "serviceWorker/serviceWorker.js"
  },
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "tabs",
    "windows",
    "notifications",
    "alarms",
    "cookies"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://usebaxter.com",
    "https://*.usebaxter.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/icon-16.png",
      "48": "assets/icons/icon-48.png"
    },
    "default_title": "Extension Boilerplate",
    "default_popup": "popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "gmailJsLoader/gmailJsLoader.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}