AutoSave & Recovery

AutoSave & Recovery

Save input text values for easy retrieval, eliminating rewriting. Quickly access and reuse saved values.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.41",
  "short_name": "SaveRecovery",
  "name": "AutoSave & Recovery",
  "description": "Save input text values for easy retrieval, eliminating rewriting. Quickly access and reuse saved values.",
  "homepage_url": "https://www.randuslab.com/",
  "background": {
    "service_worker": "src/background.js"
  },
  "action": {},
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/styles.css",
        "iframe/index.html.js",
        "html/index.html",
        "iframe/util.html.js",
        "icons/recording.png",
        "icons/minimize.png",
        "icons/maximize.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery/jquery.min.js",
        "src/content.js",
        "pop/pop.js",
        "pop/tabs.js"
      ],
      "css": [],
      "all_frames": true
    }
  ],
  "sandbox": {
    "pages": []
  }
}