More Space Please

More Space Please

add more spaces between characters, words and lines

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "More Space Please",
  "description": "add more spaces between characters, words and lines",
  "version": "0.1.0",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Add spaces"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "256": "icon/logo.png"
  },
  "manifest_version": 3
}