GrowthHackers.com

GrowthHackers.com

Chrome extension to read stories of GrowthHackers.com without opening the website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GrowthHackers.com",
  "description": "Chrome extension to read stories of GrowthHackers.com without opening the website.",
  "version": "2.1",
  "content_security_policy": "script-src 'self' https://cdn.import.io/; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://snooptank.com/blog/*"
      ],
      "js": [
        "jquery.js",
        "popup.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "growthhackers-128.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://cdn.import.io/*"
  ]
}