Travian Mark as Read at Top

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

Cos'è Travian Mark as Read at Top?

Travian Mark as Read at Top è un'estensione di Chrome sviluppata da mauricio.schmaedeck, e la sua funzione principale è "This extension creates a button at the top of the reports page to mark them as read.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Travian Mark as Read at Top

Scarica i file di estensione Travian Mark as Read at Top in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
URL Ufficiale https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Descrizione This extension creates a button at the top of the reports page to mark them as read.
Dimensione del File 19.9 KB
Conteggio Installazioni 43
Versione Corrente 1.2
Ultimo Aggiornamento 2017-05-21
Data di Pubblicazione 2017-05-21
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore mauricio.schmaedeck
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}