Sentence Segmenter

Sentence Segmenter

This extension will make your text easily readable by separating sentences based on periods.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sentence Segmenter",
  "short_name": "Sentence Segmenter",
  "version": "1.6.8",
  "manifest_version": 3,
  "description": "This extension will make your text easily readable by separating sentences based on periods.",
  "icons": {
    "128": "images/icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/script.js",
        "scripts/contentscript.js"
      ],
      "css": [
        "styles/main.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "action": {
    "default_title": "Sentence Segmentation"
  }
}