Travian Mark as Read at Top

Travian Mark as Read at Top

This extension creates a button at the top of the reports page to mark them as read.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Travian Mark as Read at Top",
  "description": "This extension creates a button at the top of the reports page to mark them as read.",
  "version": "1.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "*://tx3.travian.com.br/berichte.php"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://tx3.travian.com.br/berichte.php*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}