SFDL-Salesforce Direct Login

SFDL-Salesforce Direct Login

This a tool that helps you direct login into salesforce account without any Username and Password.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SFDL-Salesforce Direct Login",
  "version": "0.0.3",
  "description": "This a tool that helps you direct login into salesforce account without any Username and Password.",
  "author": "Suraj Kumar Singh and Yogesh.",
  "homepage_url": "https://chrome.google.com/webstore/detail/sfdl-salesforce-direct-lo/hbenaapjmjekjignjanojegkiphoclma",
  "icons": {
    "16": "img/Logotrap.png",
    "48": "img/Logotrap.png",
    "64": "img/Logotrap.png",
    "128": "img/Logotrap.png"
  },
  "browser_action": {
    "default_icon": "img/Logotrap.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "cookies",
    "storage",
    "https://*.force.com/*",
    "https://*.salesforce.com/*",
    "alarms"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-1.11.2.min.js",
        "js/forcetk.min.js",
        "js/contentScript.js"
      ],
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*"
      ]
    }
  ]
}