Magic pencil

Magic pencil

Polish your writing to perfection with our powerful tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Magic pencil",
  "version": "1.0.4",
  "description": "Polish your writing to perfection with our powerful tool.",
  "manifest_version": 3,
  "author": "Yash Jain",
  "permissions": [
    "storage",
    "declarativeContent",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://developer.chrome.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "pencil-logo.png"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "autoplay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "MUO Auto Search",
    "default_icon": "pencil-logo.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}