ScrollTrotter

ScrollTrotter

Log the miles you've scrolled down the screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScrollTrotter",
  "version": "0.0.3",
  "description": "Log the miles you've scrolled down the screen",
  "icons": {
    "16": "img/logo2.png",
    "48": "img/logo2.png",
    "128": "img/logo2.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}