Quit social media

Quit social media

It's about time. This extension will gently remind you everytime you try to access social media so you can better spend your time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Quit social media",
  "description": "It's about time.\nThis extension will gently remind you everytime you try to access social media so you can better spend your time.",
  "version": "1.0.0",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "128.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "storage",
    "alarms"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "blocked-page/blocked-page.html"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "popup-page/popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "options-page/options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "popup-page/popup.html"
  }
}