force.com Editor Utils

force.com Editor Utils

This extension disable page scroll bar and maximize the code edit window which helps developer in coding.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "force.com Editor Utils",
  "description": "This extension disable page scroll bar and maximize the code edit window which helps developer in coding.",
  "version": "2.2",
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_title": "Enable/Disable Force.com Editor Utils",
    "default_icon": "unlock.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.0.3.js",
        "script.js"
      ]
    }
  ],
  "manifest_version": 2
}