At the End of the Day No More

At the End of the Day No More

Gets rid of 'at the end of the day'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "At the End of the Day No More",
  "short_name": "EoD",
  "version": "1.0.0",
  "description": "Gets rid of 'at the end of the day'",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "control_panel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "match_about_blank": true,
      "js": [
        "content_script.js"
      ],
      "all_frames": true
    }
  ]
}