Travian Mark as Read at Top

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

Was ist Travian Mark as Read at Top?

Travian Mark as Read at Top ist eine Chrome-Erweiterung, die von mauricio.schmaedeck entwickelt wurde, und ihr Hauptmerkmal ist "This extension creates a button at the top of the reports page to mark them as read.".

Erweiterungsscreenshots

screenshot

Travian Mark as Read at Top-Erweiterungs-CRX-Datei herunterladen

Laden Sie Travian Mark as Read at Top-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
Offizielle URL https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Beschreibung This extension creates a button at the top of the reports page to mark them as read.
Dateigröße 19.9 KB
Installationsanzahl 43
Aktuelle Version 1.2
Letztes Update 2017-05-21
Veröffentlichungsdatum 2017-05-21
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler mauricio.schmaedeck
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}