Travian Mark as Read at Top

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

Co to jest Travian Mark as Read at Top?

Travian Mark as Read at Top to rozszerzenie Chrome opracowane przez mauricio.schmaedeck, a jego główną funkcją jest „This extension creates a button at the top of the reports page to mark them as read.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Travian Mark as Read at Top

Pobierz pliki rozszerzeń Travian Mark as Read at Top w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
Oficjalny URL https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Opis This extension creates a button at the top of the reports page to mark them as read.
Rozmiar pliku 19.9 KB
Liczba instalacji 43
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2017-05-21
Data Publikacji 2017-05-21
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper mauricio.schmaedeck
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}