FormSave

FormSave

Automatically saves any textarea typed in, and allows the user to view saved textarea content by clicking on a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "FormSave",
  "version": "0.9.15resigned1",
  "description": "Automatically save textareas and view those previously saved.",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon32.png"
    },
    "browser_style": true,
    "default_title": "FormSave",
    "default_popup": "popup/formsave.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/lodashCustom.min.js",
        "lib/browser-polyfill.min.js",
        "content.js"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "{88de8cc8-d1ce-484a-bd9f-dd0b100cf262}"
    }
  }
}