Formalizr

Formalizr

Remembers what you type in web pages to be able to restore it in case of a page crash.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_main_app_name__",
  "short_name": "__MSG_main_app_name_12chars__",
  "version": "1.0.0.3",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_main_app_description_longer__",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon_off19.png",
      "38": "images/icon_off38.png"
    },
    "default_title": "__MSG_main_app_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "code.jquery.com/jquery-2.1.1.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "minimum_chrome_version": "26.0.0.0",
  "offline_enabled": true,
  "permissions": [
    "storage",
    "tabs",
    "clipboardWrite",
    "http://*/*",
    "https://*/*",
    "chrome://favicon/"
  ]
}