Textarea Cache

Textarea Cache

Allows to save automatically the content in a text input field.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Textarea Cache",
  "version": "5.0.1",
  "default_locale": "en",
  "description": "Allows to save automatically the content in a text input field.",
  "homepage_url": "https://github.com/wildskyf/TextareaCache",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "contextMenus",
    "alarms"
  ],
  "action": {
    "browser_style": true,
    "default_title": "View your saved data (Textarea Cache)",
    "default_icon": "icons/tacache-48.png"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "browser_style": true,
    "page": "options/options.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}