Travian Mark as Read at Top

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

Co je Travian Mark as Read at Top?

Travian Mark as Read at Top je rozšíření Chrome vyvinuté mauricio.schmaedeck, a jeho hlavní funkcí je „This extension creates a button at the top of the reports page to mark them as read.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Travian Mark as Read at Top

Stáhněte si soubory rozšíření Travian Mark as Read at Top ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
Oficiální URL https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Popis This extension creates a button at the top of the reports page to mark them as read.
Velikost souboru 19.9 KB
Počet instalací 43
Aktuální Verze 1.2
Poslední Aktualizace 2017-05-21
Datum Vydání 2017-05-21
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář mauricio.schmaedeck
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}