Travian Mark as Read at Top

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

What is Travian Mark as Read at Top?

Travian Mark as Read at Top is a Chrome extension developed by mauricio.schmaedeck, and its main feature is "This extension creates a button at the top of the reports page to mark them as read.".

Extension Screenshots

screenshot

Download Travian Mark as Read at Top Extension CRX File

Download Travian Mark as Read at Top extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Simple extension to create a button to mark reports as read at the top of the page (Travian)                    

Extension Basic Information

Name Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
Official URL https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Description This extension creates a button at the top of the reports page to mark them as read.
File Size 19.9 KB
Installation Count 43
Current Version 1.2
Last Updated 2017-05-21
Publish Date 2017-05-21
Rating 5.00/5 Total 2 Ratings
Developer mauricio.schmaedeck
Email [email protected]
Payment Type free
Supported Languages en
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"
        }
    ]
}