Print Perfect AI Text Editor

Print Perfect AI Text Editor

Print Perfect helps you correct and edit your text to make it sound like it was written by a native English speaker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Print Perfect AI Text Editor",
  "description": "Print Perfect helps you correct and edit your text to make it sound like it was written by a native English speaker.",
  "version": "1.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon_16X16.png",
    "48": "icons/icon_48x48.png",
    "128": "icons/icon_128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "sidePanel",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sidepanel.js"
      ]
    }
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  }
}