CRM Helper

CRM Helper

The best helper for CRM to scrape data from a webpage and save them into CRM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CRM Helper",
  "short_name": "Helper For CRM",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "contextMenus",
    "https://www.linkedin.com/*",
    "http://crm.devekattor.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "assets/background.js"
    ]
  },
  "version": "1",
  "description": "The best helper for CRM to scrape data from a webpage and save them into CRM",
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png",
    "256": "images/256.png"
  },
  "browser_action": {
    "default_icon": "images/128.png",
    "default_popup": "pages/popup.html",
    "default_title": "CRM Helper"
  },
  "content_scripts": [
    {
      "css": [
        "assets/content.css"
      ],
      "js": [
        "assets/content.js"
      ],
      "matches": [
        "https://www.linkedin.com/company/*"
      ]
    },
    {
      "css": [
        "assets/content.css"
      ],
      "js": [
        "assets/crm.js"
      ],
      "matches": [
        "http://crm.devekattor.com/work/*"
      ]
    },
    {
      "css": [
        "assets/content.css"
      ],
      "js": [
        "assets/profile.js"
      ],
      "matches": [
        "https://www.linkedin.com/in/*"
      ]
    }
  ]
}