Newsfeed Eradicator 2.0

Newsfeed Eradicator 2.0

An inspiring quote instead of a newsfeed each time you open your social media.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.1",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "Newsfeed Eradicator 2.0",
  "description": "An inspiring quote instead of a newsfeed each time you open your social media.",
  "icons": {
    "128": "icons/icon.png"
  },
  "action": {
    "title": "Newsfeed Eradicator 2.0"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./js/background.js"
  },
  "options_ui": {
    "browser_style": true,
    "open_in_tab": false,
    "page": "index.html"
  }
}