Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Oracle APEX Form Filler",
  "short_name": "Oracle APEX Form Filler",
  "description": "Use to fill out long winded APEX pages with test data",
  "version": "2.0.0",
  "browser_action": {
    "default_icon": "apex.png"
  },
  "icons": {
    "16": "apex.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "moment.min.js",
        "jquery.min.js",
        "content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "notifications",
    "contextMenus"
  ]
}