Smart Reading Counter

Smart Reading Counter

A chrome extension showing the number of favourite and read books, taken and new tests on www.smartreading.ru

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Smart Reading Counter",
  "version": "1.1",
  "description": "A chrome extension showing the number of favourite and read books, taken and new tests on www.smartreading.ru",
  "manifest_version": 2,
  "permissions": [
    "https://smartreading.ru/*"
  ],
  "icons": {
    "48": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://smartreading.ru/personal/user/*"
      ],
      "run_at": "document_idle",
      "js": [
        "js/smartreading-counter.js"
      ]
    }
  ]
}