SFDC Console

SFDC Console

Just opens the Developer Console in new Tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SFDC Console",
  "version": "1",
  "description": "Just opens the Developer Console in new Tab",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "https://*.force.com/*",
    "https://*.salesforce.com/*"
  ],
  "manifest_version": 2
}