Typio Form Recovery

Typio Form Recovery

Autosave, everywhere. Recover lost form input with ease!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Typio Form Recovery",
  "short_name": "Typio",
  "description": "Autosave, everywhere. Recover lost form input with ease!",
  "version": "3.2.4",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "contextMenus",
    "unlimitedStorage",
    "idle"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": false,
      "js": [
        "js/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/content.frameInjector.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*",
    "css/*.css",
    "fonts/*",
    "templates/*",
    "html/app.html",
    "js/content.frameInjector.js",
    "js/*.js.map"
  ],
  "options_ui": {
    "page": "html/app.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "38": "img/icon38.png"
    },
    "default_title": "Typio Form recovery",
    "default_popup": "html/popup.html"
  }
}