Text-Free(Block unwanted articles)

Text-Free(Block unwanted articles)

This app is an app that blocks articles you do not like while browsing the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "Text-Free",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "1.5",
  "action": {
    "default_icon": "./images/icon.png",
    "default_popup": "main.html",
    "default_title": "Text Free"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "inject.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}