Form Controller

Form Controller

To upgrade and simplify any html form

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.3",
  "short_name": "FormController",
  "name": "Form Controller",
  "description": "To upgrade and simplify any html form",
  "default_locale": "en",
  "permissions": [
    "storage",
    "tabs",
    "http://*/",
    "https://*/",
    "<all_urls>",
    "contextMenus"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Form Controller",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "script/root.js",
        "script/selector-generator.js",
        "script/copy_element.js"
      ],
      "css": [
        "css/copy-element-selector.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}