Sprout Social

Sprout Social

Sprout Social powers social communication with world-class engagement, publishing, analytics and team collaboration tools.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sprout Social",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Sprout Social powers social communication with world-class engagement, publishing, analytics and team collaboration tools.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://app.sproutsocial.com/*",
        "*://*.instagram.com/*",
        "*://*.twitter.com/*",
        "*://*.facebook.com/*"
      ],
      "css": [
        "sprout-sharebtn/styles.css"
      ],
      "js": [
        "vendor/jquery-3.2.1.slim.min.js",
        "sprout-sharebtn/index.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "manifest.json",
    "svg/*"
  ],
  "browser_action": {
    "default_icon": "icons/chrome-extensions-favicon-19.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.sproutsocial.com/*"
    ]
  },
  "icons": {
    "16": "icons/SproutLeaf_16.png",
    "48": "icons/SproutLeaf_48.png",
    "128": "icons/SproutLeaf_128.png"
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*"
  ]
}