Tinkoff statistic

Tinkoff statistic

добавляет в тиньке на страницу События сумму всех операций по бумаге https://www.tinkoff.ru/invest/stocks/[тикер]/events/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tinkoff statistic",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*.tinkoff.ru/invest/stocks/*/events/*"
      ],
      "js": [
        "jquery.min.js",
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html"
  }
}